use of org.apache.maven.scm.provider.tfs.command.blame.TfsBlameCommand in project maven-scm by apache.
the class TfsScmProvider method blame.
protected BlameScmResult blame(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
TfsBlameCommand command = new TfsBlameCommand();
command.setLogger(getLogger());
return (BlameScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations