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