Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for userProperties (0.05 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java

            this.commandLine = requireNonNull(commandLine);
        }
    
        @Override
        public String source() {
            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();
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Oct 08 07:36:42 UTC 2025
    - 21.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                throws Exception {
            return buildPom(pomPath, false, systemProperties, userProperties, profileIds);
        }
    
        private PomTestWrapper buildPom(
                String pomPath,
                boolean lenientValidation,
                Properties systemProperties,
                Properties userProperties,
                String... profileIds)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 94.8K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

            data.put("workingDirectory", context.cwd.get().toString());
            data.put("systemProperties", toProperties(context.protoSession.getSystemProperties()));
            data.put("userProperties", toProperties(context.protoSession.getUserProperties()));
            data.put("versionProperties", CLIReportingUtils.getBuildProperties());
            context.eventSpyDispatcher.init(() -> data);
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 28 13:01:07 UTC 2025
    - 43.2K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                modelBuildingRequest.inactiveProfileIds(request.getInactiveProfileIds());
                modelBuildingRequest.systemProperties(toMap(request.getSystemProperties()));
                modelBuildingRequest.userProperties(toMap(request.getUserProperties()));
                modelBuildingRequest.repositoryMerging(ModelBuilderRequest.RepositoryMerging.valueOf(
                        request.getRepositoryMerging().name()));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
  5. 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 Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/PomInlinerTransformer.java

                        HashSet<String> usedProperties = new HashSet<>();
                        newVersion = interpolator.interpolate(version.trim(), property -> {
                            if (!session.getConfigProperties().containsKey(property)) {
                                throw new IllegalArgumentException("Cannot inline property " + property);
                            }
                            usedProperties.add(property);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 20:01:00 UTC 2025
    - 5.8K bytes
    - Viewed (0)
Back to top