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