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