use of org.apache.maven.scm.provider.tfs.command.TfsTagCommand in project maven-scm by apache.
the class TfsScmProvider method tag.
protected TagScmResult tag(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
TfsTagCommand command = new TfsTagCommand();
command.setLogger(getLogger());
return (TagScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations