use of org.apache.maven.scm.provider.clearcase.command.update.ClearCaseUpdateCommand in project maven-scm by apache.
the class ClearCaseScmProvider method update.
/**
* {@inheritDoc}
*/
protected UpdateScmResult update(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
ClearCaseUpdateCommand command = new ClearCaseUpdateCommand();
command.setLogger(getLogger());
return (UpdateScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations