- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for activatedOpt (0.05 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/ActivationSettings.java
return new ActivationSettings(active, optional, recursive); } static ActivationSettings activated() { return new ActivationSettings(true, false, true); } static ActivationSettings activatedOpt() { return new ActivationSettings(true, true, true); } static ActivationSettings deactivated() { return new ActivationSettings(false, false, false); }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 11 16:38:19 GMT 2025 - 2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java
/** * Mark a profile as optional and activated. * @param id The identifier of the profile. */ public void activateOptionalProfile(String id) { this.activations.put(id, ActivationSettings.activatedOpt()); } /** * Mark a profile as required and deactivated. * @param id The identifier of the profile. */ public void deactivateRequiredProfile(String id) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 11 16:38:19 GMT 2025 - 5.6K bytes - Click Count (0)