Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilder.java

                eventCatapult.fire(ExecutionEvent.Type.ProjectSucceeded, session, null);
            } catch (Throwable t) {
                builderCommon.handleBuildError(reactorContext, rootSession, session, currentProject, t, buildStartTime);
    
                projectExecutionListener.afterProjectExecutionFailure(
                        new ProjectExecutionEvent(session, currentProject, t));
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 20:01:00 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

                        + ", you should define versions in pluginManagement section of your " + "pom.xml or parent");
            }
    
            return executionPlan;
        }
    
        public void handleBuildError(
                final ReactorContext buildContext,
                final MavenSession rootSession,
                final MavenSession currentSession,
                final MavenProject mavenProject,
                Throwable t,
    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

                                failure = new LifecycleExecutionException("Error building project");
                                failures.forEach(failure::addSuppressed);
                            }
                            handleBuildError(reactorContext, session, step.project, failure);
                        } else if (allStepsExecuted) {
                            // If there were no failures, report success
    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