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