Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for userProperties (0.33 sec)

  1. 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 modelResolver(ModelResolver modelResolver) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileActivationContext.java

         * line.
         *
         * @param userProperties The user properties, may be {@code null}.
         * @return This context, never {@code null}.
         */
        public DefaultProfileActivationContext setUserProperties(Map<String, String> userProperties) {
            this.userProperties = unmodifiable(userProperties);
            return this;
        }
    
        @Override
        public File getProjectDirectory() {
            return projectDirectory;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

        }
    
        public Properties getUserProperties() {
            return userProperties;
        }
    
        public ProjectBuildingRequest setUserProperties(Properties userProperties) {
            if (userProperties != null) {
                this.userProperties = new Properties();
                this.userProperties.putAll(userProperties);
            } else {
                this.userProperties.clear();
            }
    
            return this;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/feature/Features.java

        }
    
        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) {
            return doGet(userProperties != null ? userProperties.get(key) : null, def);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 13:04:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuildingRequest.java

        public Properties getUserProperties() {
            if (userProperties == null) {
                userProperties = new Properties();
            }
    
            return userProperties;
        }
    
        @Override
        public DefaultSettingsBuildingRequest setUserProperties(Properties userProperties) {
            if (userProperties != null) {
                this.userProperties = new Properties();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/project/DefaultProjectBuilderConfiguration.java

        }
    
        public ProjectBuilderConfiguration setUserProperties(Properties userProperties) {
            this.userProperties = userProperties;
            return this;
        }
    
        public Properties getUserProperties() {
            if (userProperties == null) {
                userProperties = new Properties();
            }
    
            return userProperties;
        }
    
        public Properties getExecutionProperties() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java

            if (userProperties == null) {
                userProperties = new Properties();
            }
    
            return userProperties;
        }
    
        @Override
        public DefaultModelBuildingRequest setUserProperties(Properties userProperties) {
            if (userProperties != null) {
                this.userProperties = new Properties();
                this.userProperties.putAll(userProperties);
            } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileActivationContext.java

         * line.
         *
         * @param userProperties The user properties, may be {@code null}.
         * @return This context, never {@code null}.
         */
        public DefaultProfileActivationContext setUserProperties(Map<String, String> userProperties) {
            this.userProperties = unmodifiable(userProperties);
            return this;
        }
    
        @Override
        public Path getProjectDirectory() {
            return projectDirectory;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/CliRequest.java

        }
    
        public Properties getUserProperties() {
            return userProperties;
        }
    
        public Properties getSystemProperties() {
            return systemProperties;
        }
    
        public MavenExecutionRequest getRequest() {
            return request;
        }
    
        public void setUserProperties(Properties properties) {
            this.userProperties.putAll(properties);
        }
    
        public Path getRootDirectory() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 10:32:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PropertyContributor.java

        /**
         * Invoked just before session is created with a mutable map that carries collected user properties so far.
         *
         * @param userProperties The mutable user properties, never {@code null}.
         */
        void contribute(Map<String, String> userProperties);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top