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