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