- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getInactiveProfiles (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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; } @OverrideCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 32.1K bytes - Click Count (0) -
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}. */Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 18.6K bytes - Click Count (0) -
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) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 12.2K bytes - Click Count (0)