use of org.apache.maven.scm.provider.local.command.list.LocalListCommand in project maven-scm by apache.
the class LocalScmProvider method list.
/**
* {@inheritDoc}
*/
protected ListScmResult list(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
LocalListCommand command = new LocalListCommand();
command.setLogger(getLogger());
return (ListScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations