Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for beforeProjectLifecycleExecution (0.31 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/DelegatingProjectExecutionListener.java

                listener.beforeProjectExecution(event);
            }
        }
    
        public void beforeProjectLifecycleExecution(ProjectExecutionEvent event) throws LifecycleExecutionException {
            for (ProjectExecutionListener listener : listeners) {
                listener.beforeProjectLifecycleExecution(event);
            }
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/CompoundProjectExecutionListener.java

                listener.beforeProjectExecution(event);
            }
        }
    
        @Override
        public void beforeProjectLifecycleExecution(ProjectExecutionEvent event) throws LifecycleExecutionException {
            for (ProjectExecutionListener listener : listeners) {
                listener.beforeProjectLifecycleExecution(event);
            }
        }
    
        @Override
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionListener.java

     * @see MojoExecutionListener
     * @since 3.1.2
     */
    public interface ProjectExecutionListener {
        void beforeProjectExecution(ProjectExecutionEvent event) throws LifecycleExecutionException;
    
        void beforeProjectLifecycleExecution(ProjectExecutionEvent event) throws LifecycleExecutionException;
    
        void afterProjectExecutionSuccess(ProjectExecutionEvent event) throws LifecycleExecutionException;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilder.java

                List<MojoExecution> mojoExecutions = executionPlan.getMojoExecutions();
    
                projectExecutionListener.beforeProjectLifecycleExecution(
                        new ProjectExecutionEvent(session, currentProject, mojoExecutions));
                mojoExecutor.execute(session, mojoExecutions);
    
                long buildEndTime = System.currentTimeMillis();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                    assertNull(event.getCause());
    
                    log.add("beforeProjectExecution " + event.getProject().getArtifactId());
                }
    
                public void beforeProjectLifecycleExecution(ProjectExecutionEvent event)
                        throws LifecycleExecutionException {
                    assertNotNull(event.getSession());
                    assertNotNull(event.getProject());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
Back to top