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