Search in sources :

Example 1 with JazzDiffCommand

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);
}
Also used : JazzDiffCommand(org.apache.maven.scm.provider.jazz.command.diff.JazzDiffCommand) DiffScmResult(org.apache.maven.scm.command.diff.DiffScmResult)

Aggregations

DiffScmResult (org.apache.maven.scm.command.diff.DiffScmResult)1 JazzDiffCommand (org.apache.maven.scm.provider.jazz.command.diff.JazzDiffCommand)1