Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top