Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for afterExecutionFailure (0.21 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/CompoundMojoExecutionListener.java

            for (MojoExecutionListener listener : listeners) {
                listener.afterMojoExecutionSuccess(event);
            }
        }
    
        public void afterExecutionFailure(MojoExecutionEvent event) {
            for (MojoExecutionListener listener : listeners) {
                listener.afterExecutionFailure(event);
            }
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/DelegatingMojoExecutionListener.java

            for (MojoExecutionListener listener : listeners) {
                listener.afterMojoExecutionSuccess(event);
            }
        }
    
        public void afterExecutionFailure(MojoExecutionEvent event) {
            for (MojoExecutionListener listener : listeners) {
                listener.afterExecutionFailure(event);
            }
        }
    
        public void addMojoExecutionListener(MojoExecutionListener listener) {
            this.listeners.add(listener);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  3. 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,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  4. 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);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.7K bytes
    - Viewed (0)
  5. 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));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

                provided.afterMojoExecutionSuccess(event);
            }
        }
    
        public void afterExecutionFailure(MojoExecutionEvent event) {
            for (WeakMojoExecutionListener provided : getProvidedListeners()) {
                provided.afterExecutionFailure(event);
            }
        }
    
        private Collection<WeakMojoExecutionListener> getProvidedListeners() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 5.2K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                }
    
                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() + ":"
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  8. 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);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.5K bytes
    - Viewed (0)
Back to top