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