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