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