use of org.apache.maven.scm.provider.jazz.command.JazzScmCommand in project maven-scm by apache.
the class JazzBlameCommand method createBlameCommand.
public JazzScmCommand createBlameCommand(ScmProviderRepository repo, ScmFileSet fileSet, String filename) {
JazzScmCommand command = new JazzScmCommand(JazzConstants.CMD_ANNOTATE, null, repo, false, fileSet, getLogger());
command.addArgument(filename);
return command;
}
Aggregations