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