- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for FAIL_AT_END (0.08 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
* This method works in conjunction with the filtering in executePlan(): * - For FAIL_FAST: Sets ReactorBuildStatus to halted, which causes executePlan to only process after:* steps * - For FAIL_AT_END: Blacklists the project and its dependents, which causes executePlan to skip them * - For FAIL_NEVER: Does nothing special, allowing all projects to continue building * <p>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
if (commandLine.hasOption(CLIManager.FAIL_FAST)) { return MavenExecutionRequest.REACTOR_FAIL_FAST; } else if (commandLine.hasOption(CLIManager.FAIL_AT_END)) { return MavenExecutionRequest.REACTOR_FAIL_AT_END; } else if (commandLine.hasOption(CLIManager.FAIL_NEVER)) { return MavenExecutionRequest.REACTOR_FAIL_NEVER; } else {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (0)