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);
}
Aggregations