Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 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 Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

                this.activeProfileIds = activeProfileIds;
                return this;
            }
    
            public ModelBuilderRequestBuilder inactiveProfileIds(List<String> inactiveProfileIds) {
                this.inactiveProfileIds = inactiveProfileIds;
                return this;
            }
    
            public ModelBuilderRequestBuilder systemProperties(Map<String, String> systemProperties) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:30:49 UTC 2025
    - 16.3K 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 Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 11 16:38:19 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileActivationContext.java

            if (inactiveProfileIds != null) {
                this.inactiveProfileIds = Collections.unmodifiableList(inactiveProfileIds);
            } else {
                this.inactiveProfileIds = Collections.emptyList();
            }
    
            return this;
        }
    
        @Override
        public Map<String, String> getSystemProperties() {
            return systemProperties;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

        public List<String> getInactiveProfileIds() {
            return inactiveProfileIds;
        }
    
        @Override
        public void setInactiveProfileIds(List<String> inactiveProfileIds) {
            if (inactiveProfileIds != null) {
                this.inactiveProfileIds = new ArrayList<>(inactiveProfileIds);
            } else {
                this.inactiveProfileIds.clear();
            }
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 10:13:56 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  6. 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 Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  7. 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 Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

    import static java.util.Objects.requireNonNull;
    
    /**
     * Request used to build a {@link org.apache.maven.api.Project} using
     * the {@link ProjectBuilder} service.
     *
     * TODO: add validationLevel, activeProfileIds, inactiveProfileIds, resolveDependencies
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface ProjectBuilderRequest extends RepositoryAwareRequest {
    
        /**
         * Gets the path to the project to build.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:30:49 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java

         * a {@link MavenProject}.
         */
        void setActiveProfileIds(List<String> activeProfileIds);
    
        List<String> getActiveProfileIds();
    
        void setInactiveProfileIds(List<String> inactiveProfileIds);
    
        List<String> getInactiveProfileIds();
    
        /**
         * Add a {@link org.apache.maven.model.Profile} that has come from an external source. This may be from a custom
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 10:13:56 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                        .toList()
                                : null);
                modelBuildingRequest.activeProfileIds(request.getActiveProfileIds());
                modelBuildingRequest.inactiveProfileIds(request.getInactiveProfileIds());
                modelBuildingRequest.systemProperties(toMap(request.getSystemProperties()));
                modelBuildingRequest.userProperties(toMap(request.getUserProperties()));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
Back to top