Search in sources :

Example 1 with HgTagCommand

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);
}
Also used : HgTagCommand(org.apache.maven.scm.provider.hg.command.tag.HgTagCommand) TagScmResult(org.apache.maven.scm.command.tag.TagScmResult)

Aggregations

TagScmResult (org.apache.maven.scm.command.tag.TagScmResult)1 HgTagCommand (org.apache.maven.scm.provider.hg.command.tag.HgTagCommand)1