Search in sources :

Example 1 with HgListCommand

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);
}
Also used : HgListCommand(org.apache.maven.scm.provider.hg.command.inventory.HgListCommand) ListScmResult(org.apache.maven.scm.command.list.ListScmResult)

Aggregations

ListScmResult (org.apache.maven.scm.command.list.ListScmResult)1 HgListCommand (org.apache.maven.scm.provider.hg.command.inventory.HgListCommand)1