use of org.apache.maven.scm.provider.vss.commands.add.VssAddCommand in project maven-scm by apache.
the class VssScmProvider method add.
/**
* {@inheritDoc}
*/
public AddScmResult add(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
// TODO: Check whether the CREATE command must be called
VssAddCommand command = new VssAddCommand();
command.setLogger(getLogger());
return (AddScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations