Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for activeProfileIds (0.05 sec)

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

            if (activeProfileIds == null) {
                activeProfileIds = new ArrayList<>();
            }
    
            return activeProfileIds;
        }
    
        @Override
        public DefaultModelBuildingRequest setActiveProfileIds(List<String> activeProfileIds) {
            if (activeProfileIds != null) {
                this.activeProfileIds = new ArrayList<>(activeProfileIds);
            } else {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java

         * @param activeProfileIds A {@link List} of profile IDs that must be activated.
         * @deprecated Use {@link #activateOptionalProfile(String)} or {@link #activateRequiredProfile(String)} instead.
         */
        @Deprecated
        public void overwriteActiveProfiles(List<String> activeProfileIds) {
            getActiveProfiles().forEach(this.activations::remove);
            activeProfileIds.forEach(this::activateOptionalProfile);
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 11 16:38:19 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileActivationContext.java

            if (activeProfileIds != null) {
                this.activeProfileIds = Collections.unmodifiableList(activeProfileIds);
            } else {
                this.activeProfileIds = Collections.emptyList();
            }
    
            return this;
        }
    
        @Override
        public List<String> getInactiveProfileIds() {
            return inactiveProfileIds;
        }
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FilterModelBuildingRequest.java

        public List<String> getActiveProfileIds() {
            return request.getActiveProfileIds();
        }
    
        @Override
        public FilterModelBuildingRequest setActiveProfileIds(List<String> activeProfileIds) {
            request.setActiveProfileIds(activeProfileIds);
    
            return this;
        }
    
        @Override
        public List<String> getInactiveProfileIds() {
            return request.getInactiveProfileIds();
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java

        // Profiles
    
        /**
         * Set any active profiles that the {@link ProjectBuilder} should consider while constructing
         * a {@link MavenProject}.
         */
        void setActiveProfileIds(List<String> activeProfileIds);
    
        List<String> getActiveProfileIds();
    
        void setInactiveProfileIds(List<String> inactiveProfileIds);
    
        List<String> getInactiveProfileIds();
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 10:13:56 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top