Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for userProperties (0.07 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/feature/Features.java

            return doGet(userProperties, Constants.MAVEN_DEPLOY_BUILD_POM, true);
        }
    
        private static boolean doGet(Properties userProperties, String key, boolean def) {
            return doGet(userProperties != null ? userProperties.get(key) : null, def);
        }
    
        private static boolean doGet(Map<String, ?> userProperties, String key, boolean def) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 04 19:42:23 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/ProtoSession.java

                this.userProperties = userProperties;
                this.systemProperties = systemProperties;
                this.startTime = startTime;
                this.topDirectory = topDirectory;
                this.rootDirectory = rootDirectory;
            }
    
            public Builder withUserProperties(@Nonnull Map<String, String> userProperties) {
                this.userProperties = new HashMap<>(userProperties);
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

                this.systemProperties = systemProperties;
                return this;
            }
    
            public ModelBuilderRequestBuilder userProperties(Map<String, String> userProperties) {
                this.userProperties = userProperties;
                return this;
            }
    
            public ModelBuilderRequestBuilder repositoryMerging(RepositoryMerging repositoryMerging) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Mar 26 20:54:22 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/project/DefaultProjectBuilderConfiguration.java

        @Override
        public ProjectBuilderConfiguration setUserProperties(Properties userProperties) {
            this.userProperties = userProperties;
            return this;
        }
    
        @Override
        public Properties getUserProperties() {
            if (userProperties == null) {
                userProperties = new Properties();
            }
    
            return userProperties;
        }
    
        @Override
        public Properties getExecutionProperties() {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  5. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PropertyContributor.java

         * @return The user properties with contributions.
         */
        default Map<String, String> contribute(ProtoSession protoSession) {
            HashMap<String, String> userProperties = new HashMap<>(protoSession.getUserProperties());
            contribute(userProperties);
            return userProperties;
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Nov 20 19:58:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/java/org/apache/maven/project/ProjectBuilderConfiguration.java

        ProjectBuilderConfiguration setLocalRepository(ArtifactRepository localRepository);
    
        ProjectBuilderConfiguration setUserProperties(Properties userProperties);
    
        ProjectBuilderConfiguration setExecutionProperties(Properties executionProperties);
    
        Date getBuildStartTime();
    
        ProjectBuilderConfiguration setBuildStartTime(Date buildStartTime);
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java

         * These properties can be set using the -D command-line option.
         *
         * @return an unmodifiable map of user properties
         */
        @Nonnull
        Map<String, String> userProperties();
    
        /**
         * Returns a map of system properties for the Maven execution.
         * These include both Java system properties and Maven-specific system properties.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  8. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Options.java

         *
         * @return an {@link Optional} containing the map of user properties, or empty if not set
         */
        @Nonnull
        Optional<Map<String, String>> userProperties();
    
        /**
         * Indicates whether to show the version information and exit.
         *
         * @return an {@link Optional} containing the boolean flag, or empty if not set
         */
        @Nonnull
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Jan 13 16:14:35 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  9. api/maven-api-annotations/src/main/java/org/apache/maven/api/annotations/Config.java

         * - Configured by users through external means like CLI options (USER_PROPERTIES)
         * - Defined in the project's POM file (MODEL)
         *
         * @return the source of the configuration property, defaults to USER_PROPERTIES
         * @see Source for detailed information about each source type and when it's used
         */
        Source source() default Source.USER_PROPERTIES;
    
        /**
         * Specifies the type of the configuration property.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top