.core.cli.2024.5.1.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cli Show documentation
Show all versions of cli Show documentation
Extensible Command Line Interface
import org.nasdanika.capability.CapabilityFactory;
import org.nasdanika.cli.HelpCommandFactory;
import org.nasdanika.cli.RootCommandFactory;
module org.nasdanika.cli {
exports org.nasdanika.cli;
requires transitive org.nasdanika.capability;
requires transitive info.picocli;
requires org.apache.commons.text;
opens org.nasdanika.cli to info.picocli, org.nasdanika.html.model.app.gen.cli;
provides CapabilityFactory with
RootCommandFactory,
HelpCommandFactory;
}