- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for showVersion (0.05 seconds)
-
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/BaseParserTest.java
.build()); Assertions.assertTrue(invokerRequest.options().isPresent()); Options options = invokerRequest.options().orElseThrow(); Assertions.assertFalse(options.showVersion().orElse(false)); Assertions.assertFalse(options.showVersionAndExit().orElse(false)); Assertions.assertTrue(options.showErrors().orElse(false)); Assertions.assertTrue(options.verbose().orElse(false));
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 4.2K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
throw new InvokerException.ExitException(0); } if (context.options().showVersionAndExit().isPresent()) { showVersion(context); throw new InvokerException.ExitException(0); } } protected void showVersion(C context) { Consumer<String> writer = determineWriter(context); if (context.options().quiet().orElse(false)) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Oct 28 13:01:07 GMT 2025 - 43.2K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellInvoker.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 10.1K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Oct 08 07:36:42 GMT 2025 - 21.3K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
} } private void version(CliRequest cliRequest) { if (cliRequest.verbose || cliRequest.commandLine.hasOption(CLIManager.SHOW_VERSION)) { System.out.println(CLIReportingUtils.showVersion()); } } private void commands(CliRequest cliRequest) { if (cliRequest.showErrors) { slf4jLogger.info("Error stacktraces are turned on.");Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 78.1K bytes - Click Count (0)