Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for calculateProjectBuilds (0.13 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/lifecycle/internal/BuildListCalculator.java

     *
     * @since 3.0
     */
    @Named
    @Singleton
    public class BuildListCalculator {
        public ProjectBuildList calculateProjectBuilds(MavenSession session, List<TaskSegment> taskSegments) {
            List<ProjectSegment> projectBuilds = new ArrayList<>();
    
            MavenProject rootProject = session.getTopLevelProject();
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.6K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleStarter.java

                }
    
                List<TaskSegment> taskSegments = lifecycleTaskSegmentCalculator.calculateTaskSegments(session);
                projectBuilds = buildListCalculator.calculateProjectBuilds(session, taskSegments);
    
                if (projectBuilds.isEmpty()) {
                    throw new NoGoalSpecifiedException("No goals have been specified for this build."
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 5.8K bytes
    - Click Count (0)
Back to Top