use of org.apache.maven.scm.provider.starteam.command.status.StarteamStatusCommand in project maven-scm by apache.
the class StarteamScmProvider method status.
/**
* {@inheritDoc}
*/
public StatusScmResult status(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
fileSet = fixUpScmFileSetAbsoluteFilePath(fileSet);
StarteamStatusCommand command = new StarteamStatusCommand();
command.setLogger(getLogger());
return (StatusScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations