Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getOptionProperties (0.22 sec)

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

            return source;
        }
    
        @Override
        public Optional<Map<String, String>> userProperties() {
            if (commandLine.hasOption(CLIManager.USER_PROPERTY)) {
                return Optional.of(toMap(commandLine.getOptionProperties(CLIManager.USER_PROPERTY)));
            }
            return Optional.empty();
        }
    
        @Override
        public Optional<Boolean> showVersionAndExit() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Oct 08 07:36:42 UTC 2025
    - 21.3K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // are most dominant.
            // ----------------------------------------------------------------------
    
            Properties userSpecifiedProperties =
                    commandLine.getOptionProperties(String.valueOf(CLIManager.SET_USER_PROPERTY));
            userProperties.putAll(userSpecifiedProperties);
    
            // ----------------------------------------------------------------------
            // Load config files
    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