Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ProjectExecutionEvent (0.29 sec)

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

            this(session, project, executionPlan, null);
        }
    
        public ProjectExecutionEvent(MavenSession session, MavenProject project, Throwable cause) {
            this(session, project, null, cause);
        }
    
        public ProjectExecutionEvent(
                MavenSession session, MavenProject project, List<MojoExecution> executionPlan, Throwable cause) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionListener.java

        void beforeProjectExecution(ProjectExecutionEvent event) throws LifecycleExecutionException;
    
        void beforeProjectLifecycleExecution(ProjectExecutionEvent event) throws LifecycleExecutionException;
    
        void afterProjectExecutionSuccess(ProjectExecutionEvent event) throws LifecycleExecutionException;
    
        void afterProjectExecutionFailure(ProjectExecutionEvent event);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilder.java

                        new ProjectExecutionEvent(session, currentProject, mojoExecutions));
                mojoExecutor.execute(session, mojoExecutions);
    
                long buildEndTime = System.currentTimeMillis();
    
                projectExecutionListener.afterProjectExecutionSuccess(
                        new ProjectExecutionEvent(session, currentProject, mojoExecutions));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/CompoundProjectExecutionListener.java

        }
    
        @Override
        public void beforeProjectExecution(ProjectExecutionEvent event) throws LifecycleExecutionException {
            for (ProjectExecutionListener listener : listeners) {
                listener.beforeProjectExecution(event);
            }
        }
    
        @Override
        public void beforeProjectLifecycleExecution(ProjectExecutionEvent event) throws LifecycleExecutionException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/lifecycle/DelegatingProjectExecutionListener.java

    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<>();
    
        public void beforeProjectExecution(ProjectExecutionEvent event) throws LifecycleExecutionException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

    import org.apache.maven.execution.MojoExecutionEvent;
    import org.apache.maven.execution.MojoExecutionListener;
    import org.apache.maven.execution.ProjectDependencyGraph;
    import org.apache.maven.execution.ProjectExecutionEvent;
    import org.apache.maven.execution.ProjectExecutionListener;
    import org.apache.maven.lifecycle.internal.DefaultLifecycleTaskSegmentCalculator;
    import org.apache.maven.lifecycle.internal.ExecutionPlanItem;
    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