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