Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for executionFailure (0.05 sec)

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

        public void projectLogMessage(String projectId, String event) {
            log(event);
        }
    
        @Override
        public void projectFinished(String projectId) {}
    
        @Override
        public void executionFailure(String projectId, boolean halted, String exception) {}
    
        @Override
        public void mojoStarted(ExecutionEvent event) {}
    
        @Override
        public void finish(int exitCode) throws Exception {}
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/logging/BuildEventListener.java

        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;
    
        void fail(Throwable t) throws Exception;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/logging/LoggingExecutionListener.java

                                && !MavenExecutionRequest.REACTOR_FAIL_AT_END.equals(session.getReactorFailureBehavior());
            }
            Throwable cause = projectExecutionEvent.getCause();
            buildEventListener.executionFailure(
                    projectExecutionEvent.getProject().getArtifactId(), halted, cause != null ? cause.toString() : null);
        }
    
        @Override
        public void projectDiscoveryStarted(ExecutionEvent event) {
    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