Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CompoundProjectExecutionListener (0.09 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)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

    import org.apache.maven.lifecycle.MojoExecutionConfigurator;
    import org.apache.maven.lifecycle.internal.BuildThreadFactory;
    import org.apache.maven.lifecycle.internal.CompoundProjectExecutionListener;
    import org.apache.maven.lifecycle.internal.ExecutionEventCatapult;
    import org.apache.maven.lifecycle.internal.GoalTask;
    import org.apache.maven.lifecycle.internal.LifecycleTask;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
Back to top