Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for userProperties (0.39 sec)

  1. 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)
  2. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/AbstractProfileActivatorTest.java

            activator = null;
        }
    
        protected ProfileActivationContext newContext(final Properties userProperties, final Properties systemProperties) {
            DefaultProfileActivationContext context = new DefaultProfileActivationContext();
            return context.setUserProperties(userProperties).setSystemProperties(systemProperties);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. 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)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultTransformerContext.java

    import org.apache.maven.model.locator.ModelLocator;
    
    /**
     *
     * @since 4.0.0
     */
    class DefaultTransformerContext implements TransformerContext {
        final ModelLocator 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: Tue Nov 07 08:20:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingRequest.java

         * on his discretion, e.g. via the {@code -Dkey=value} parameter on the command line.
         *
         * @param userProperties The user properties, may be {@code null}.
         * @return This request, never {@code null}.
         */
        SettingsBuildingRequest setUserProperties(Properties userProperties);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. 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)
  7. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java

         * line.
         *
         * @param userProperties The user properties, may be {@code null}.
         * @return This request, never {@code null}.
         */
        ProjectBuildingRequest setUserProperties(Properties userProperties);
    
        /**
         * Gets the user properties to use for interpolation and profile activation. The user properties have been
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 7K 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