- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getExcludedProjects (0.07 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/ProjectActivation.java
* @deprecated Use {@link #getRequiredInactiveProjectSelectors()} and {@link #getOptionalInactiveProjectSelectors()} * instead. */ @Deprecated public List<String> getExcludedProjects() { return Collections.unmodifiableList(new ArrayList<>(getProjectSelectors(pa -> !pa.active()))); } /** * Overwrites the active projects based on a pre-Maven 4 "active projects" list.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 11 16:38:19 GMT 2025 - 7.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java
/** * @return the excluded projects, never {@code null} * @since 3.2 * @deprecated Since Maven 4: use {@link #getProjectActivation()}. */ @Deprecated List<String> getExcludedProjects(); /** * Sets whether the build should be resumed from the data in the resume.properties file. * @param resume Whether or not to resume a previous build.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 18.6K bytes - Click Count (0)