use of org.apache.maven.scm.provider.integrity.command.blame.IntegrityBlameCommand in project maven-scm by apache.
the class IntegrityScmProvider method blame.
/**
* Maps to si annotate
*/
@Override
protected BlameScmResult blame(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters params) throws ScmException {
IntegrityBlameCommand command = new IntegrityBlameCommand();
command.setLogger(getLogger());
return (BlameScmResult) command.execute(repository, fileSet, params);
}
Aggregations