Search in sources :

Example 1 with IntegrityTagCommand

use of org.apache.maven.scm.provider.integrity.command.tag.IntegrityTagCommand in project maven-scm by apache.

the class IntegrityScmProvider method tag.

/**
 * Maps to si checkpoint
 */
@Override
protected TagScmResult tag(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters params) throws ScmException {
    IntegrityTagCommand command = new IntegrityTagCommand();
    command.setLogger(getLogger());
    return (TagScmResult) command.execute(repository, fileSet, params);
}
Also used : IntegrityTagCommand(org.apache.maven.scm.provider.integrity.command.tag.IntegrityTagCommand) TagScmResult(org.apache.maven.scm.command.tag.TagScmResult)

Aggregations

TagScmResult (org.apache.maven.scm.command.tag.TagScmResult)1 IntegrityTagCommand (org.apache.maven.scm.provider.integrity.command.tag.IntegrityTagCommand)1