Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for showVersionMinimal (0.07 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/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: Fri Nov 08 08:49:11 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellInvoker.java

            context.writer.accept(banner);
            if (!context.options().showVersion().orElse(false)) {
                context.writer.accept(CLIReportingUtils.showVersionMinimal());
            }
            context.writer.accept("");
    
            try (holder) {
                SimpleSystemRegistryImpl systemRegistry =
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
Back to top