Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ProjectExecutionListener (0.09 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/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)
Back to top