Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for displayHelp (0.53 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

            return commandLine;
        }
    
        public Set<Option> getUsedDeprecatedOptions() {
            return usedDeprecatedOptions;
        }
    
        public void displayHelp(PrintStream stdout) {
            displayHelp(new PrintWriter(stdout));
        }
    
        public void displayHelp(PrintWriter pw) {
            HelpFormatter formatter = new HelpFormatter();
    
            int width = MessageUtils.getTerminalWidth();
            if (width <= 0) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Aug 06 04:56:48 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java

            return new CommonsCliOptions(source, cliManager, commandLine);
        }
    
        @Override
        public void displayHelp(ParserRequest request, Consumer<String> printStream) {
            cliManager.displayHelp(request.command(), printStream);
        }
    
        protected static class CLIManager {
            public static final String USER_PROPERTY = "D";
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Oct 08 07:36:42 UTC 2025
    - 21.3K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

        protected void helpOrVersionAndMayExit(C context) throws Exception {
            if (context.options().help().isPresent()) {
                Consumer<String> writer = determineWriter(context);
                context.options().displayHelp(context.invokerRequest.parserRequest(), writer);
                throw new InvokerException.ExitException(0);
            }
            if (context.options().showVersionAndExit().isPresent()) {
                showVersion(context);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 28 13:01:07 UTC 2025
    - 43.2K bytes
    - Viewed (0)
Back to top