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);
}
Aggregations