Search in sources :

Example 1 with StarteamDiffCommand

use of org.apache.maven.scm.provider.starteam.command.diff.StarteamDiffCommand in project maven-scm by apache.

the class StarteamScmProvider method diff.

/**
 * {@inheritDoc}
 */
public DiffScmResult diff(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
    fileSet = fixUpScmFileSetAbsoluteFilePath(fileSet);
    StarteamDiffCommand command = new StarteamDiffCommand();
    command.setLogger(getLogger());
    return (DiffScmResult) command.execute(repository, fileSet, parameters);
}
Also used : StarteamDiffCommand(org.apache.maven.scm.provider.starteam.command.diff.StarteamDiffCommand) DiffScmResult(org.apache.maven.scm.command.diff.DiffScmResult)

Aggregations

DiffScmResult (org.apache.maven.scm.command.diff.DiffScmResult)1 StarteamDiffCommand (org.apache.maven.scm.provider.starteam.command.diff.StarteamDiffCommand)1