- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for CLIManager (0.03 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/CommonsCliShellOptions.java
public static CommonsCliShellOptions parse(String[] args) throws ParseException { CLIManager cliManager = new CLIManager(); return new CommonsCliShellOptions(Options.SOURCE_CLI, cliManager, cliManager.parse(args)); } protected CommonsCliShellOptions(String source, CLIManager cliManager, CommandLine commandLine) { super(source, cliManager, commandLine); } @Override protected CommonsCliShellOptions copy(
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 2.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/CommonsCliUpgradeOptions.java
CLIManager cliManager = new CLIManager(); return new CommonsCliUpgradeOptions(Options.SOURCE_CLI, cliManager, cliManager.parse(args)); } protected CommonsCliUpgradeOptions(String source, CLIManager cliManager, CommandLine commandLine) { super(source, cliManager, commandLine); } @Override @NonnullRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:48:39 UTC 2025 - 7K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/CommonsCliEncryptOptions.java
CLIManager cliManager = new CLIManager(); return new CommonsCliEncryptOptions(Options.SOURCE_CLI, cliManager, cliManager.parse(args)); } protected CommonsCliEncryptOptions(String source, CLIManager cliManager, CommandLine commandLine) { super(source, cliManager, commandLine); } @Override public Optional<Boolean> force() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 25 17:39:57 UTC 2025 - 4K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java
String s2 = opt2.getOpt() != null ? opt2.getOpt() : opt2.getLongOpt(); return s1.compareToIgnoreCase(s2); } } private static class CLIManagerExtension extends CLIManager { public Collection<Option> getOptions() { List<Option> optList = new ArrayList<>(options.getOptions()); optList.sort(new OptionComparator()); return optList; } }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 4.1K bytes - Viewed (0)