Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for commandLineSyntax (0.09 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/CommonsCliShellOptions.java

            return new CommonsCliShellOptions(source, (CLIManager) cliManager, commandLine);
        }
    
        protected static class CLIManager extends CommonsCliOptions.CLIManager {
            @Override
            protected String commandLineSyntax(String command) {
                return command + " [options]";
            }
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java

                StringWriter sw = new StringWriter();
                PrintWriter pw2 = new PrintWriter(sw);
                formatter.printHelp(
                        pw2,
                        width,
                        commandLineSyntax(command),
                        System.lineSeparator() + "Options:",
                        options,
                        HelpFormatter.DEFAULT_LEFT_PAD,
                        HelpFormatter.DEFAULT_DESC_PAD,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Oct 08 07:36:42 UTC 2025
    - 21.3K bytes
    - Viewed (0)
Back to top