Search in sources :

Example 1 with BazaarBlameCommand

use of org.apache.maven.scm.provider.bazaar.command.blame.BazaarBlameCommand in project maven-scm by apache.

the class BazaarScmProvider method blame.

/**
 * {@inheritDoc}
 */
protected BlameScmResult blame(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
    BazaarBlameCommand command = new BazaarBlameCommand();
    command.setLogger(getLogger());
    return (BlameScmResult) command.execute(repository, fileSet, parameters);
}
Also used : BazaarBlameCommand(org.apache.maven.scm.provider.bazaar.command.blame.BazaarBlameCommand) BlameScmResult(org.apache.maven.scm.command.blame.BlameScmResult)

Aggregations

BlameScmResult (org.apache.maven.scm.command.blame.BlameScmResult)1 BazaarBlameCommand (org.apache.maven.scm.provider.bazaar.command.blame.BazaarBlameCommand)1