Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for removeMojoExecutionListener (0.21 sec)

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

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

                        .lookup(DelegatingProjectExecutionListener.class)
                        .removeProjectExecutionListener(projectListener);
                getContainer().lookup(DelegatingMojoExecutionListener.class).removeMojoExecutionListener(mojoListener);
            }
    
            List<String> expectedLog = Arrays.asList(
                    "beforeProjectExecution project-basic", //
                    "beforeProjectLifecycleExecution project-basic", //
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 22.9K bytes
    - Viewed (0)
Back to top