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