Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getOptionProperties (0.08 seconds)

  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() {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Oct 08 07:36:42 GMT 2025
    - 21.3K bytes
    - Click Count (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
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Oct 27 13:24:03 GMT 2025
    - 78.1K bytes
    - Click Count (0)
Back to Top