use of org.apache.maven.scm.provider.integrity.command.export.IntegrityExportCommand in project maven-scm by apache.
the class IntegrityScmProvider method export.
/**
* Maps to si projectco (no sandbox is used)
*/
@Override
protected ExportScmResult export(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters params) throws ScmException {
IntegrityExportCommand command = new IntegrityExportCommand();
command.setLogger(getLogger());
return (ExportScmResult) command.execute(repository, fileSet, params);
}
Aggregations