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