Search in sources :

Example 1 with IntegrityAddCommand

use of org.apache.maven.scm.provider.integrity.command.add.IntegrityAddCommand in project maven-scm by apache.

the class IntegrityScmProvider method add.

/**
 * Maps to si viewnonmembers and then si add for every non-member
 */
@Override
public AddScmResult add(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters params) throws ScmException {
    IntegrityAddCommand command = new IntegrityAddCommand();
    command.setLogger(getLogger());
    return (AddScmResult) command.execute(repository, fileSet, params);
}
Also used : AddScmResult(org.apache.maven.scm.command.add.AddScmResult) IntegrityAddCommand(org.apache.maven.scm.provider.integrity.command.add.IntegrityAddCommand)

Aggregations

AddScmResult (org.apache.maven.scm.command.add.AddScmResult)1 IntegrityAddCommand (org.apache.maven.scm.provider.integrity.command.add.IntegrityAddCommand)1