Search in sources :

Example 1 with IntegrityBranchCommand

use of org.apache.maven.scm.provider.integrity.command.branch.IntegrityBranchCommand in project maven-scm by apache.

the class IntegrityScmProvider method branch.

/**
 * Maps to si createdevpath
 */
@Override
protected BranchScmResult branch(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters params) throws ScmException {
    IntegrityBranchCommand command = new IntegrityBranchCommand();
    command.setLogger(getLogger());
    return (BranchScmResult) command.execute(repository, fileSet, params);
}
Also used : IntegrityBranchCommand(org.apache.maven.scm.provider.integrity.command.branch.IntegrityBranchCommand) BranchScmResult(org.apache.maven.scm.command.branch.BranchScmResult)

Aggregations

BranchScmResult (org.apache.maven.scm.command.branch.BranchScmResult)1 IntegrityBranchCommand (org.apache.maven.scm.provider.integrity.command.branch.IntegrityBranchCommand)1