use of org.apache.maven.scm.provider.perforce.command.update.PerforceUpdateCommand in project maven-scm by apache.
the class PerforceScmProvider method update.
protected UpdateScmResult update(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters params) throws ScmException {
PerforceUpdateCommand command = new PerforceUpdateCommand();
command.setLogger(getLogger());
return (UpdateScmResult) command.execute(repository, fileSet, params);
}
Aggregations