Search in sources :

Example 1 with StarteamTagCommand

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);
}
Also used : TagScmResult(org.apache.maven.scm.command.tag.TagScmResult) StarteamTagCommand(org.apache.maven.scm.provider.starteam.command.tag.StarteamTagCommand)

Aggregations

TagScmResult (org.apache.maven.scm.command.tag.TagScmResult)1 StarteamTagCommand (org.apache.maven.scm.provider.starteam.command.tag.StarteamTagCommand)1