- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for showVersionMinimal (0.09 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/utils/CLIReportingUtils.java
} if (terminal != null) { version.append(ls).append("Terminal: ").append(terminal); } return version.toString(); } public static String showVersionMinimal() { Properties properties = getBuildProperties(); String version = reduce(properties.getProperty(BUILD_VERSION_PROPERTY)); return (version != null ? version : "<version unknown>"); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Feb 10 15:02:53 UTC 2025 - 6.8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/EncryptInvoker.java
context.addInHeader( context.style.italic().bold().foreground(Colors.rgbColor("green")), "Maven Encryption " + CLIReportingUtils.showVersionMinimal()); context.addInHeader("Tool for secure password management on workstations."); context.addInHeader("This tool is part of Apache Maven 4 distribution."); context.addInHeader("");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 4.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/UpgradeInvoker.java
context.style = new AttributedStyle(); context.addInHeader( context.style.italic().bold().foreground(Colors.rgbColor("green")), "Maven Upgrade " + CLIReportingUtils.showVersionMinimal()); context.addInHeader("Tool for upgrading Maven projects and dependencies."); context.addInHeader("This tool is part of Apache Maven 4 distribution."); context.addInHeader("");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 4.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellInvoker.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 10.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
} protected void showVersion(C context) { Consumer<String> writer = determineWriter(context); if (context.options().quiet().orElse(false)) { writer.accept(CLIReportingUtils.showVersionMinimal()); } else if (context.invokerRequest.effectiveVerbose()) { writer.accept(CLIReportingUtils.showVersion(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Oct 28 13:01:07 UTC 2025 - 43.2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
} if (cliRequest.commandLine.hasOption(CLIManager.VERSION)) { if (cliRequest.commandLine.hasOption(CLIManager.QUIET)) { System.out.println(CLIReportingUtils.showVersionMinimal()); } else { System.out.println(CLIReportingUtils.showVersion()); } throw new ExitException(0); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (0)