Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getInactiveProfiles (0.2 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java

         * Mimics the pre-Maven 4 "inactive profiles" list.
         * @deprecated Use {@link #getRequiredInactiveProfileIds()} and {@link #getOptionalInactiveProfileIds()} instead.
         */
        @Deprecated
        public List<String> getInactiveProfiles() {
            return Collections.unmodifiableList(new ArrayList<>(getProfileIds(pa -> !pa.active())));
        }
    
        /**
         * Overwrites the active profiles based on a pre-Maven 4 "active profiles" list.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 11 16:38:19 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        @Override
        public List<String> getActiveProfiles() {
            return this.profileActivation.getActiveProfiles();
        }
    
        @Override
        public List<String> getInactiveProfiles() {
            return this.profileActivation.getInactiveProfiles();
        }
    
        @Override
        public TransferListener getTransferListener() {
            return transferListener;
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

                    if (req != null) {
                        request.setActiveProfileIds(req.getActiveProfiles());
                        request.setInactiveProfileIds(req.getInactiveProfiles());
                    }
                }
            }
    
            return request;
        }
    
        private ProjectBuildingRequest injectSession(ProjectBuildingRequest request) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        /**
         * @return The list of profiles that the user wants to de-activate.
         * @deprecated Since Maven 4: use {@link #getProfileActivation()}.
         */
        @Deprecated
        List<String> getInactiveProfiles();
    
        /**
         * Return the requested activation(s) of project(s) in this execution.
         * @return requested (de-)activation(s) of project(s) in this execution. Never {@code null}.
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top