- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for overwriteInactiveProjects (0.09 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java
* @deprecated Use {@link #deactivateOptionalProject(String)} or {@link #deactivateRequiredProject(String)} instead. */ @Deprecated public void overwriteInactiveProjects(List<String> inactiveProjectSelectors) { List<ProjectActivationSettings> projects = getProjects(pa -> !pa.active()).toList(); this.activations.removeAll(projects);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/DefaultMavenExecutionRequest.java
return this; } @Override public MavenExecutionRequest setExcludedProjects(List<String> excludedProjects) { if (excludedProjects != null) { this.projectActivation.overwriteInactiveProjects(excludedProjects); } return this; } @Override public MavenExecutionRequest setResume(boolean resume) { this.resume = resume; return this;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 32.1K bytes - Click Count (0)