Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for projectFailed (0.5 sec)

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

            // default does nothing
        }
    
        @Override
        public void projectSucceeded(ExecutionEvent event) {
            // default does nothing
        }
    
        @Override
        public void projectFailed(ExecutionEvent event) {
            // default does nothing
        }
    
        @Override
        public void forkStarted(ExecutionEvent event) {
            // default does nothing
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

            // notify listeners about "soft" project build failures only
            if (t instanceof Exception exception && !(t instanceof RuntimeException)) {
                eventCatapult.fire(ExecutionEvent.Type.ProjectFailed, currentSession, null, exception);
            }
    
            // reactor failure modes
            if (t instanceof RuntimeException || !(t instanceof Exception)) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 08:42:00 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                // notify listeners about "soft" project build failures only
                if (t instanceof Exception exception && !(t instanceof RuntimeException)) {
                    eventCatapult.fire(ExecutionEvent.Type.ProjectFailed, session, null, exception);
                }
    
                // reactor failure modes
                if (t instanceof RuntimeException || !(t instanceof Exception)) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
Back to top