Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for inactiveProfileIds (0.21 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java

            if (inactiveProfileIds == null) {
                inactiveProfileIds = new ArrayList<>();
            }
    
            return inactiveProfileIds;
        }
    
        @Override
        public DefaultModelBuildingRequest setInactiveProfileIds(List<String> inactiveProfileIds) {
            if (inactiveProfileIds != null) {
                this.inactiveProfileIds = new ArrayList<>(inactiveProfileIds);
            } else {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileActivationContext.java

            this.inactiveProfileIds = unmodifiable(inactiveProfileIds);
            return this;
        }
    
        @Override
        public Map<String, String> getSystemProperties() {
            return systemProperties;
        }
    
        /**
         * Sets the system properties to use for interpolation and profile activation. The system properties are collected
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java

         * @param inactiveProfileIds A {@link List} of profile IDs that must be deactivated.
         * @deprecated Use {@link #deactivateOptionalProfile(String)} or {@link #deactivateRequiredProfile(String)} instead.
         */
        @Deprecated
        public void overwriteInactiveProfiles(List<String> inactiveProfileIds) {
            getInactiveProfiles().forEach(this.activations::remove);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FilterModelBuildingRequest.java

            return request.getInactiveProfileIds();
        }
    
        @Override
        public FilterModelBuildingRequest setInactiveProfileIds(List<String> inactiveProfileIds) {
            request.setInactiveProfileIds(inactiveProfileIds);
    
            return this;
        }
    
        @Override
        public Properties getSystemProperties() {
            return request.getSystemProperties();
        }
    
        @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         * Sets the identifiers of those profiles that should be deactivated by explicit demand.
         *
         * @param inactiveProfileIds The identifiers of those profiles to deactivate, may be {@code null}.
         * @return This request, never {@code null}.
         */
        ModelBuildingRequest setInactiveProfileIds(List<String> inactiveProfileIds);
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top