Search in sources :

Example 1 with LocalTagCommand

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

Aggregations

TagScmResult (org.apache.maven.scm.command.tag.TagScmResult)1 LocalTagCommand (org.apache.maven.scm.provider.local.command.tag.LocalTagCommand)1