- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for deactivatedOpt (0.04 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/ActivationSettings.java
return new ActivationSettings(true, true, true); } static ActivationSettings deactivated() { return new ActivationSettings(false, false, false); } static ActivationSettings deactivatedOpt() { return new ActivationSettings(false, true, false); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java
* Mark a profile as optional and deactivated. * @param id The identifier of the profile. */ public void deactivateOptionalProfile(String id) { this.activations.put(id, ActivationSettings.deactivatedOpt()); } /** * Adds a profile activation to the request. * @param id The identifier of the profile. * @param active Should the profile be activated?Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 5.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java
* @param selector The selector of the project. */ public void deactivateOptionalProject(String selector) { this.activations.add(new ProjectActivationSettings(selector, ActivationSettings.deactivatedOpt())); } public boolean isEmpty() { return this.activations.isEmpty(); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 7.2K bytes - Viewed (0)