Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CompoundProjectExecutionListener (0.13 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/CompoundProjectExecutionListener.java

    import org.apache.maven.execution.ProjectExecutionListener;
    import org.apache.maven.lifecycle.LifecycleExecutionException;
    
    public class CompoundProjectExecutionListener implements ProjectExecutionListener {
        private final Collection<ProjectExecutionListener> listeners;
    
        public CompoundProjectExecutionListener(Collection<ProjectExecutionListener> listeners) {
            this.listeners = listeners; // NB this is live injected collection
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilder.java

            this.mojoExecutor = mojoExecutor;
            this.builderCommon = builderCommon;
            this.eventCatapult = eventCatapult;
            this.projectExecutionListener = new CompoundProjectExecutionListener(listeners);
            this.transformerManager = transformerManager;
        }
    
        public void buildProject(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 20:01:00 UTC 2025
    - 5.5K bytes
    - Viewed (0)
Back to top