Search in sources :

Example 1 with IntegrityMkdirCommand

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);
}
Also used : IntegrityMkdirCommand(org.apache.maven.scm.provider.integrity.command.mkdir.IntegrityMkdirCommand) MkdirScmResult(org.apache.maven.scm.command.mkdir.MkdirScmResult)

Aggregations

MkdirScmResult (org.apache.maven.scm.command.mkdir.MkdirScmResult)1 IntegrityMkdirCommand (org.apache.maven.scm.provider.integrity.command.mkdir.IntegrityMkdirCommand)1