use of org.apache.maven.scm.provider.local.command.checkout.LocalCheckOutCommand in project maven-scm by apache.
the class LocalScmProvider method checkout.
/**
* {@inheritDoc}
*/
public CheckOutScmResult checkout(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
LocalCheckOutCommand command = new LocalCheckOutCommand();
command.setLogger(getLogger());
return (CheckOutScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations