use of org.apache.maven.scm.provider.local.command.tag.LocalTagCommand in project maven-scm by apache.
the class LocalScmProvider method tag.
/**
* {@inheritDoc}
*/
public TagScmResult tag(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
LocalTagCommand command = new LocalTagCommand();
command.setLogger(getLogger());
return (TagScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations