Search in sources :

Example 1 with ClearCaseTagCommand

use of org.apache.maven.scm.provider.clearcase.command.tag.ClearCaseTagCommand in project maven-scm by apache.

the class ClearCaseScmProvider method tag.

/**
 * {@inheritDoc}
 */
public TagScmResult tag(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
    ClearCaseTagCommand command = new ClearCaseTagCommand();
    command.setLogger(getLogger());
    return (TagScmResult) command.execute(repository, fileSet, parameters);
}
Also used : ClearCaseTagCommand(org.apache.maven.scm.provider.clearcase.command.tag.ClearCaseTagCommand) TagScmResult(org.apache.maven.scm.command.tag.TagScmResult)

Aggregations

TagScmResult (org.apache.maven.scm.command.tag.TagScmResult)1 ClearCaseTagCommand (org.apache.maven.scm.provider.clearcase.command.tag.ClearCaseTagCommand)1