Search in sources :

Example 1 with IntegrityRemoveCommand

use of org.apache.maven.scm.provider.integrity.command.remove.IntegrityRemoveCommand in project maven-scm by apache.

the class IntegrityScmProvider method remove.

/**
 * Maps to si dropsandbox
 */
@Override
protected RemoveScmResult remove(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters params) throws ScmException {
    IntegrityRemoveCommand command = new IntegrityRemoveCommand();
    command.setLogger(getLogger());
    return (RemoveScmResult) command.execute(repository, fileSet, params);
}
Also used : IntegrityRemoveCommand(org.apache.maven.scm.provider.integrity.command.remove.IntegrityRemoveCommand) RemoveScmResult(org.apache.maven.scm.command.remove.RemoveScmResult)

Aggregations

RemoveScmResult (org.apache.maven.scm.command.remove.RemoveScmResult)1 IntegrityRemoveCommand (org.apache.maven.scm.provider.integrity.command.remove.IntegrityRemoveCommand)1