Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ProjectExecutionListener (0.08 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionListener.java

     * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice.
     *
     * @see ExecutionListener
     * @see MojoExecutionListener
     * @since 3.1.2
     */
    public interface ProjectExecutionListener {
        void beforeProjectExecution(ProjectExecutionEvent event) throws LifecycleExecutionException;
    
        void beforeProjectLifecycleExecution(ProjectExecutionEvent event) throws LifecycleExecutionException;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. 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) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. impl/maven-core/src/test/java/org/apache/maven/lifecycle/DelegatingProjectExecutionListener.java

    import java.util.concurrent.CopyOnWriteArrayList;
    
    import org.apache.maven.execution.ProjectExecutionEvent;
    import org.apache.maven.execution.ProjectExecutionListener;
    
    @Named
    @Singleton
    public class DelegatingProjectExecutionListener implements ProjectExecutionListener {
        private final List<ProjectExecutionListener> listeners = new CopyOnWriteArrayList<>();
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilder.java

        private final ProjectExecutionListener projectExecutionListener;
        private final TransformerManager transformerManager;
    
        @Inject
        public LifecycleModuleBuilder(
                MojoExecutor mojoExecutor,
                BuilderCommon builderCommon,
                ExecutionEventCatapult eventCatapult,
                List<ProjectExecutionListener> listeners,
                TransformerManager transformerManager) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 20:01:00 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionEvent.java

    /**
     * <p>
     * Encapsulates parameters of ProjectExecutionListener callback methods and is meant to provide API evolution path
     * should it become necessary to introduce new parameters in the existing callbacks in the future.
     * </p>
     * <strong>Note:</strong> This class is part of work in progress and can be changed or removed without notice.
     *
     * @see ProjectExecutionListener
     * @since 3.1.2
     */
    public class ProjectExecutionEvent {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

        private final Logger logger = LoggerFactory.getLogger(getClass());
    
        private final MojoExecutor mojoExecutor;
        private final ExecutionEventCatapult eventCatapult;
        private final ProjectExecutionListener projectExecutionListener;
        private final TransformerManager transformerManager;
        private final BuildPlanLogger buildPlanLogger;
        private final Map<String, MojoExecutionConfigurator> mojoExecutionConfigurators;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/logging/LoggingExecutionListener.java

    import org.apache.maven.execution.ProjectExecutionEvent;
    import org.apache.maven.execution.ProjectExecutionListener;
    import org.apache.maven.lifecycle.LifecycleExecutionException;
    import org.apache.maven.lifecycle.internal.ReactorBuildStatus;
    
    public class LoggingExecutionListener implements ExecutionListener, ProjectExecutionListener {
    
        private final ExecutionListener delegate;
        private final BuildEventListener buildEventListener;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                    log.add("afterExecutionFailure " + event.getProject().getArtifactId() + ":"
                            + event.getExecution().getExecutionId());
                }
            };
            ProjectExecutionListener projectListener = new ProjectExecutionListener() {
                @Override
                public void beforeProjectExecution(ProjectExecutionEvent event) throws LifecycleExecutionException {
                    assertNotNull(event.getSession());
    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