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);
}
Aggregations