- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for afterProjectExecutionFailure (0.16 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/CompoundProjectExecutionListener.java
listener.afterProjectExecutionSuccess(event); } } @Override public void afterProjectExecutionFailure(ProjectExecutionEvent event) { for (ProjectExecutionListener listener : listeners) { listener.afterProjectExecutionFailure(event); } }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionListener.java
void beforeProjectLifecycleExecution(ProjectExecutionEvent event) throws LifecycleExecutionException; void afterProjectExecutionSuccess(ProjectExecutionEvent event) throws LifecycleExecutionException; void afterProjectExecutionFailure(ProjectExecutionEvent event);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/logging/LoggingExecutionListener.java
@Override public void afterProjectExecutionSuccess(ProjectExecutionEvent projectExecutionEvent) throws LifecycleExecutionException {} @Override public void afterProjectExecutionFailure(ProjectExecutionEvent projectExecutionEvent) { MavenSession session = projectExecutionEvent.getSession(); boolean halted; // The ReactorBuildStatus is only available if the SmartBuilder is usedCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 6.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilder.java
} catch (Throwable t) { builderCommon.handleBuildError(reactorContext, rootSession, session, currentProject, t, buildStartTime); projectExecutionListener.afterProjectExecutionFailure( new ProjectExecutionEvent(session, currentProject, t)); // rethrow original errors and runtime exceptions if (t instanceof RuntimeException runtimeException) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 20:01:00 GMT 2025 - 5.5K bytes - Click Count (0)