- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for CommonsCliShellOptions (0.15 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/CommonsCliShellOptions.java
*/ public class CommonsCliShellOptions extends CommonsCliOptions implements ShellOptions { public static CommonsCliShellOptions parse(String[] args) throws ParseException { CLIManager cliManager = new CLIManager(); return new CommonsCliShellOptions(Options.SOURCE_CLI, cliManager, cliManager.parse(args)); }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/mvnsh/ShellParser.java
import org.apache.maven.cling.invoker.BaseParser; public class ShellParser extends BaseParser { @Override protected Options parseCliOptions(LocalContext context) { try { return CommonsCliShellOptions.parse(context.parserRequest.args().toArray(new String[0])); } catch (ParseException e) { throw new IllegalArgumentException("Failed to parse command line options: " + e.getMessage(), e); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 1.4K bytes - Viewed (0)