Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for removeProjectExecutionListener (0.43 sec)

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

            }
        }
    
        public void addProjectExecutionListener(ProjectExecutionListener listener) {
            this.listeners.add(listener);
        }
    
        public void removeProjectExecutionListener(ProjectExecutionListener 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.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

            try {
                lifecycleExecutor.execute(session);
            } finally {
                getContainer()
                        .lookup(DelegatingProjectExecutionListener.class)
                        .removeProjectExecutionListener(projectListener);
                getContainer().lookup(DelegatingMojoExecutionListener.class).removeMojoExecutionListener(mojoListener);
            }
    
            List<String> expectedLog = Arrays.asList(
    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