use of org.apache.maven.scm.provider.jazz.command.diff.JazzDiffCommand in project maven-scm by apache.
the class JazzScmProvider method diff.
/**
* {@inheritDoc}
*/
protected DiffScmResult diff(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
getLogger().debug("JazzScmProvider:diff()");
JazzDiffCommand command = new JazzDiffCommand();
command.setLogger(getLogger());
return (DiffScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations