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