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