Search in sources :

Example 1 with TfsBranchCommand

use of org.apache.maven.scm.provider.tfs.command.TfsBranchCommand in project maven-scm by apache.

the class TfsScmProvider method branch.

protected BranchScmResult branch(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
    TfsBranchCommand command = new TfsBranchCommand();
    command.setLogger(getLogger());
    return (BranchScmResult) command.execute(repository, fileSet, parameters);
}
Also used : TfsBranchCommand(org.apache.maven.scm.provider.tfs.command.TfsBranchCommand) BranchScmResult(org.apache.maven.scm.command.branch.BranchScmResult)

Aggregations

BranchScmResult (org.apache.maven.scm.command.branch.BranchScmResult)1 TfsBranchCommand (org.apache.maven.scm.provider.tfs.command.TfsBranchCommand)1