Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for projectFinished (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. impl/maven-core/src/main/java/org/apache/maven/logging/BuildEventListener.java

     */
    public interface BuildEventListener {
    
        void sessionStarted(ExecutionEvent event);
    
        void projectStarted(String projectId);
    
        void projectLogMessage(String projectId, String event);
    
        void projectFinished(String projectId);
    
        void executionFailure(String projectId, boolean halted, String exception);
    
        void mojoStarted(ExecutionEvent event);
    
        void finish(int exitCode) throws Exception;
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.5K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/logging/LoggingExecutionListener.java

            setMdc(event);
            delegate.projectSucceeded(event);
            buildEventListener.projectFinished(event.getProject().getArtifactId());
        }
    
        @Override
        public void projectFailed(ExecutionEvent event) {
            setMdc(event);
            delegate.projectFailed(event);
            buildEventListener.projectFinished(event.getProject().getArtifactId());
        }
    
        @Override
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 6.5K bytes
    - Click Count (0)
Back to Top