use of org.apache.maven.scm.provider.integrity.command.mkdir.IntegrityMkdirCommand in project maven-scm by apache.
the class IntegrityScmProvider method mkdir.
/**
* Maps to si createsubproject
*/
@Override
protected MkdirScmResult mkdir(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters params) throws ScmException {
IntegrityMkdirCommand command = new IntegrityMkdirCommand();
command.setLogger(getLogger());
return (MkdirScmResult) command.execute(repository, fileSet, params);
}
Aggregations