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