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