- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for FAIL_NEVER (0.03 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 25 17:39:57 UTC 2025 - 14.8K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
public static final String FAIL_FAST = "ff"; public static final String FAIL_ON_SEVERITY = "fos"; public static final String FAIL_AT_END = "fae"; public static final String FAIL_NEVER = "fn"; public static final String RESUME = "r"; public static final String RESUME_FROM = "rf"; public static final String PROJECT_LIST = "pl";Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Aug 06 04:56:48 UTC 2025 - 17.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
* - 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> * Note: TEARDOWN steps are not executed for failed or blacklisted projects, as they're designed forRegistered: 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
} 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 { // this is the default behavior. return MavenExecutionRequest.REACTOR_FAIL_FAST; } }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (0)