Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addMojoExecutionListener (0.3 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/DelegatingMojoExecutionListener.java

        public void afterExecutionFailure(MojoExecutionEvent event) {
            for (MojoExecutionListener listener : listeners) {
                listener.afterExecutionFailure(event);
            }
        }
    
        public void addMojoExecutionListener(MojoExecutionListener listener) {
            this.listeners.add(listener);
        }
    
        public void removeMojoExecutionListener(MojoExecutionListener listener) {
            this.listeners.remove(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)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                }
            };
            getContainer().lookup(DelegatingProjectExecutionListener.class).addProjectExecutionListener(projectListener);
            getContainer().lookup(DelegatingMojoExecutionListener.class).addMojoExecutionListener(mojoListener);
    
            try {
                lifecycleExecutor.execute(session);
            } finally {
                getContainer()
                        .lookup(DelegatingProjectExecutionListener.class)
    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)
Back to top