Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for activeProfileIds (0.15 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 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.activeProfileIds = unmodifiable(activeProfileIds);
            return this;
        }
    
        @Override
        public List<String> getInactiveProfileIds() {
            return inactiveProfileIds;
        }
    
        /**
         * Sets the identifiers of those profiles that should be deactivated by explicit demand.
         *
    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. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

                this.profiles = profiles;
                return this;
            }
    
            public ModelBuilderRequestBuilder activeProfileIds(List<String> activeProfileIds) {
                this.activeProfileIds = activeProfileIds;
                return this;
            }
    
            public ModelBuilderRequestBuilder inactiveProfileIds(List<String> inactiveProfileIds) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 09 11:07:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. 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 Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. 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 Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

    import static org.apache.maven.api.services.BaseRequest.nonNull;
    
    /**
     * 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 {
    
        @Nonnull
        Session getSession();
    
        @Nonnull
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Sep 12 06:19:14 UTC 2024
    - 5.7K 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 activated by explicit demand.
         *
         * @param activeProfileIds The identifiers of those profiles to activate, may be {@code null}.
         * @return This request, never {@code null}.
         */
        ModelBuildingRequest setActiveProfileIds(List<String> activeProfileIds);
    
        /**
         * Gets the identifiers of those profiles that should be deactivated by explicit demand.
         *
    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