use of org.apache.maven.scm.provider.tfs.command.TfsCheckOutCommand in project maven-scm by apache.
the class TfsScmProvider method checkout.
protected CheckOutScmResult checkout(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
TfsCheckOutCommand command = new TfsCheckOutCommand();
command.setLogger(getLogger());
return (CheckOutScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations