Search in sources :

Example 1 with IntegrityDiffCommand

use of org.apache.maven.scm.provider.integrity.command.diff.IntegrityDiffCommand in project maven-scm by apache.

the class IntegrityScmProvider method diff.

/**
 * Maps to si diff
 */
@Override
protected DiffScmResult diff(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters params) throws ScmException {
    IntegrityDiffCommand command = new IntegrityDiffCommand();
    command.setLogger(getLogger());
    return (DiffScmResult) command.execute(repository, fileSet, params);
}
Also used : IntegrityDiffCommand(org.apache.maven.scm.provider.integrity.command.diff.IntegrityDiffCommand) DiffScmResult(org.apache.maven.scm.command.diff.DiffScmResult)

Aggregations

DiffScmResult (org.apache.maven.scm.command.diff.DiffScmResult)1 IntegrityDiffCommand (org.apache.maven.scm.provider.integrity.command.diff.IntegrityDiffCommand)1