Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for userProperties (0.22 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            return this;
        }
    
        @Override
        public MavenExecutionRequest setUserProperties(Properties userProperties) {
            if (userProperties != null) {
                this.userProperties = new Properties();
                this.userProperties.putAll(userProperties);
            } else {
                this.userProperties = null;
            }
    
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelTransformerContext.java

    /**
     *
     * @since 4.0.0
     */
    class DefaultModelTransformerContext implements ModelTransformerContext {
        final ModelProcessor modelLocator;
    
        final Map<String, String> userProperties = new ConcurrentHashMap<>();
    
        final Map<Path, Holder> modelByPath = new ConcurrentHashMap<>();
    
        final Map<GAKey, Holder> modelByGA = new ConcurrentHashMap<>();
    
        public static class Holder {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/FilterModelBuildingRequest.java

        public Properties getUserProperties() {
            return request.getUserProperties();
        }
    
        @Override
        public FilterModelBuildingRequest setUserProperties(Properties userProperties) {
            request.setUserProperties(userProperties);
    
            return this;
        }
    
        @Override
        public Date getBuildStartTime() {
            return request.getBuildStartTime();
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            }
    
            populateProperties(cliRequest.commandLine, paths, cliRequest.systemProperties, cliRequest.userProperties);
    
            // now that we have properties, interpolate all arguments
            BasicInterpolator interpolator =
                    createInterpolator(paths, cliRequest.systemProperties, cliRequest.userProperties);
            CommandLine.Builder commandLineBuilder = new CommandLine.Builder();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/relocation/UserPropertiesArtifactRelocationSource.java

    @Priority(50)
    @SuppressWarnings("checkstyle:MagicNumber")
    public final class UserPropertiesArtifactRelocationSource implements MavenArtifactRelocationSource {
        public static final String NAME = "userProperties";
        private static final Logger LOGGER = LoggerFactory.getLogger(UserPropertiesArtifactRelocationSource.class);
    
        private static final String CONFIG_PROP_RELOCATIONS_ENTRIES = "maven.relocations.entries";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top