use of org.apache.maven.scm.provider.hg.command.inventory.HgListCommand in project maven-scm by apache.
the class HgScmProvider method list.
/**
* @since 1.5
* {@inheritDoc}
*/
@Override
protected ListScmResult list(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
HgListCommand hgListCommand = new HgListCommand();
hgListCommand.setLogger(getLogger());
return (ListScmResult) hgListCommand.executeCommand(repository, fileSet, parameters);
}
Aggregations