Search in sources :

Example 1 with JazzBranchCommand

use of org.apache.maven.scm.provider.jazz.command.branch.JazzBranchCommand in project maven-scm by apache.

the class JazzScmProvider method branch.

/**
 * {@inheritDoc}
 */
protected BranchScmResult branch(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
    getLogger().debug("JazzScmProvider:branch()");
    JazzBranchCommand command = new JazzBranchCommand();
    command.setLogger(getLogger());
    return (BranchScmResult) command.execute(repository, fileSet, parameters);
}
Also used : JazzBranchCommand(org.apache.maven.scm.provider.jazz.command.branch.JazzBranchCommand) BranchScmResult(org.apache.maven.scm.command.branch.BranchScmResult)

Aggregations

BranchScmResult (org.apache.maven.scm.command.branch.BranchScmResult)1 JazzBranchCommand (org.apache.maven.scm.provider.jazz.command.branch.JazzBranchCommand)1