- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for ActivationSettings (0.14 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/ActivationSettings.java
/** * Should the build continue if the target is not present? */ final boolean optional; ActivationSettings(final boolean active, final boolean optional) { this.active = active; this.optional = optional; } static ActivationSettings of(final boolean active, final boolean optional) { if (optional) { return active ? ACTIVATION_OPTIONAL : DEACTIVATION_OPTIONAL;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java
*/ public void addProfileActivation(String id, boolean active, boolean optional) { final ActivationSettings settings = ActivationSettings.of(active, optional); this.activations.put(id, settings); } private Set<String> getProfileIds(final Predicate<ActivationSettings> predicate) { return this.activations.entrySet().stream() .filter(e -> predicate.test(e.getValue()))
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java
/** * This describes how/when to active or deactivate the project. */ final ActivationSettings activationSettings; ProjectActivationSettings(String selector, ActivationSettings activationSettings) { this.selector = selector; this.activationSettings = activationSettings; } } /** * List of activated and deactivated projects. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7K bytes - Viewed (0)