Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for addBuildSummary (0.13 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzerTest.java

            MavenProject project = createMavenProject(artifactId);
            executionResult.addBuildSummary(new BuildSuccess(project, 0));
            return project;
        }
    
        private MavenProject createFailedMavenProject(String artifactId) {
            MavenProject project = createMavenProject(artifactId);
            executionResult.addBuildSummary(new BuildFailure(project, 0, new Exception()));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionResult.java

        BuildSummary getBuildSummary(MavenProject project);
    
        /**
         * Add the specified build summary.
         *
         * @param summary The build summary to add, must not be {@code null}.
         */
        void addBuildSummary(BuildSummary summary);
    
        /**
         * Indicates whether or not the build could be resumed by a second invocation of Maven.
         * @see BuildResumptionDataRepository
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionResult.java

        }
    
        @Override
        public BuildSummary getBuildSummary(MavenProject project) {
            return buildSummaries.get(project);
        }
    
        @Override
        public void addBuildSummary(BuildSummary summary) {
            buildSummaries.put(summary.getProject(), summary);
        }
    
        @Override
        public boolean canResume() {
            return canResume;
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilder.java

                        new ProjectExecutionEvent(session, currentProject, mojoExecutions));
    
                reactorContext
                        .getResult()
                        .addBuildSummary(new BuildSuccess(currentProject, Duration.between(buildStartTime, buildEndTime)));
    
                eventCatapult.fire(ExecutionEvent.Type.ProjectSucceeded, session, null);
            } catch (Throwable 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)
  5. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

            Instant buildEndTime = MonotonicClock.now();
            buildContext.getResult().addException(t);
            buildContext
                    .getResult()
                    .addBuildSummary(new BuildFailure(mavenProject, Duration.between(buildStartTime, buildEndTime), t));
    
            // notify listeners about "soft" project build failures only
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 08:42:00 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                                    new ProjectExecutionEvent(session, step.project, Collections.emptyList()));
                            reactorContext
                                    .getResult()
                                    .addBuildSummary(new BuildSuccess(step.project, clock.wallTime(), clock.execTime()));
                            eventCatapult.fire(ExecutionEvent.Type.ProjectSucceeded, session, null);
                        } else {
    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