- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for afterExecutionFailure (0.09 sec)
-
impl/maven-core/src/test/java/org/apache/maven/execution/scope/internal/MojoExecutionScopeTest.java
afterExecutionSuccess.incrementAndGet(); } @Override public void afterExecutionFailure(MojoExecutionEvent event) { afterExecutionFailure.incrementAndGet(); } }; assertSame(instance, scope.scope(Key.get(Object.class), () -> instance).get()); assertSame( instance,
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/DelegatingMojoExecutionListener.java
listener.afterMojoExecutionSuccess(event); } } @Override public void afterExecutionFailure(MojoExecutionEvent event) { for (MojoExecutionListener listener : listeners) { listener.afterExecutionFailure(event); } } public void addMojoExecutionListener(MojoExecutionListener listener) { this.listeners.add(listener); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/CompoundMojoExecutionListener.java
listener.afterMojoExecutionSuccess(event); } } @Override public void afterExecutionFailure(MojoExecutionEvent event) { for (MojoExecutionListener listener : listeners) { listener.afterExecutionFailure(event); } }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 1.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java
} catch (PluginContainerException e) { mojoExecutionListener.afterExecutionFailure( new MojoExecutionEvent(session, project, mojoExecution, mojo, e)); throw new PluginExecutionException(mojoExecution, project, e); } catch (NoClassDefFoundError e) { mojoExecutionListener.afterExecutionFailure( new MojoExecutionEvent(session, project, mojoExecution, mojo, e));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 16:01:38 UTC 2025 - 11.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java
provided.afterMojoExecutionSuccess(event); } } @Override public void afterExecutionFailure(MojoExecutionEvent event) { for (WeakMojoExecutionListener provided : getProvidedListeners()) { provided.afterExecutionFailure(event); } } private Collection<WeakMojoExecutionListener> getProvidedListeners() {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/scope/WeakMojoExecutionListener.java
void beforeMojoExecution(MojoExecutionEvent event) throws MojoExecutionException; void afterMojoExecutionSuccess(MojoExecutionEvent event) throws MojoExecutionException; void afterExecutionFailure(MojoExecutionEvent event);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MojoExecutionListener.java
void beforeMojoExecution(MojoExecutionEvent event) throws MojoExecutionException; void afterMojoExecutionSuccess(MojoExecutionEvent event) throws MojoExecutionException; void afterExecutionFailure(MojoExecutionEvent event);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java
@Override public void afterExecutionFailure(MojoExecutionEvent event) { assertNotNull(event.getSession()); assertNotNull(event.getProject()); assertNotNull(event.getExecution()); assertNotNull(event.getMojo()); assertNotNull(event.getCause()); log.add("afterExecutionFailure " + event.getProject().getArtifactId() + ":"Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 22.9K bytes - Viewed (0)