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