- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getOptionalInactiveProjectSelectors (0.17 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java
return getProjectSelectors(pa -> !pa.optional() && !pa.active()); } /** * @return Optional inactive project selectors, never {@code null}. */ public Set<String> getOptionalInactiveProjectSelectors() { return getProjectSelectors(pa -> pa.optional() && !pa.active()); } /** * Mimics the pre-Maven 4 "selected projects" list.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 7.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java
.forEach(pas -> {}); Set<String> requiredSelectors = projectActivation.getRequiredInactiveProjectSelectors(); Set<String> optionalSelectors = projectActivation.getOptionalInactiveProjectSelectors(); if (!requiredSelectors.isEmpty() || !optionalSelectors.isEmpty()) { Set<MavenProject> excludedProjects = new HashSet<>(requiredSelectors.size() + optionalSelectors.size());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 18.5K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
assertContainsExactlyInAnyOrder(activation.getRequiredInactiveProjectSelectors(), "test1", "test2"); assertContainsExactlyInAnyOrder(activation.getOptionalInactiveProjectSelectors(), "test3", "test4"); activation = new ProjectActivation(); performProjectActivation(parser.parse(options, new String[] {"-pl", "-test1,+test2"}), activation);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 30.9K bytes - Viewed (0)