Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for ProjectBuildList (0.07 sec)

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

     * </p>
     * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice.
     *
     * @since 3.0
     */
    public class ProjectBuildList implements Iterable<ProjectSegment> {
        private final List<ProjectSegment> items;
    
        public ProjectBuildList(List<ProjectSegment> items) {
            this.items = Collections.unmodifiableList(items);
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/ProjectBuildListTest.java

            ProjectBuildList projectBuildList = ProjectDependencyGraphStub.getProjectBuildList(session);
            TaskSegment taskSegment = projectBuildList.get(0).getTaskSegment();
            assertTrue(
                    projectBuildList.size() >= 6,
                    "Expected size " + projectBuildList.size() + " to be >= 6 for collection: " + projectBuildList);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java

                TaskSegment taskSegment,
                Map<MavenProject, ProjectSegment> projectBuildList) {
            // gather artifactIds which are not unique so that the respective thread names can be extended with the groupId
            Set<String> duplicateArtifactIds = projectBuildList.keySet().stream()
                    .map(MavenProject::getArtifactId)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 16 03:42:09 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  4. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

        public static final MojoDescriptor SITE_DEPLOY = createMojoDescriptor("site-deploy");
    
        /**
         * @deprecated instead use {@link #getNumberOfExecutions(ProjectBuildList)}
         */
        @Deprecated
        public int getNumberOfExceutions(ProjectBuildList projectBuildList)
                throws InvalidPluginDescriptorException, PluginVersionResolutionException, PluginDescriptorParsingException,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  5. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraphTest.java

        @Test
        void testGraph() throws Exception {
    
            ProjectBuildList projectBuildList =
                    ProjectDependencyGraphStub.getProjectBuildList(ProjectDependencyGraphStub.getMavenSession());
    
            ProjectDependencyGraph projectDependencyGraph = new ProjectDependencyGraphStub();
    
            ConcurrencyDependencyGraph graph = new ConcurrencyDependencyGraph(projectBuildList, projectDependencyGraph);
    
            // start
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraph.java

     */
    public class ConcurrencyDependencyGraph {
    
        private final ProjectBuildList projectBuilds;
    
        private final ProjectDependencyGraph projectDependencyGraph;
    
        private final Set<MavenProject> finishedProjects = new HashSet<>();
    
        private final SmartProjectComparator projectComparator;
    
        public ConcurrencyDependencyGraph(ProjectBuildList projectBuilds, ProjectDependencyGraph projectDependencyGraph) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  7. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStub.java

    import org.apache.maven.lifecycle.LifecycleNotFoundException;
    import org.apache.maven.lifecycle.LifecyclePhaseNotFoundException;
    import org.apache.maven.lifecycle.internal.GoalTask;
    import org.apache.maven.lifecycle.internal.ProjectBuildList;
    import org.apache.maven.lifecycle.internal.ProjectSegment;
    import org.apache.maven.lifecycle.internal.TaskSegment;
    import org.apache.maven.plugin.InvalidPluginDescriptorException;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  8. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/LifecycleTaskSegmentCalculatorImplTest.java

            List<TaskSegment> taskSegments = lifecycleTaskSegmentCalculator.calculateTaskSegments(session);
    
            final ProjectBuildList buildList = buildListCalculator.calculateProjectBuilds(session, taskSegments);
            final ProjectBuildList segments = buildList.getByTaskSegment(taskSegments.get(0));
            assertEquals(3, taskSegments.size(), "Stub data contains 3 segments");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/BuildListCalculatorTest.java

            List<TaskSegment> taskSegments = lifecycleTaskSegmentCalculator.calculateTaskSegments(session);
            final ProjectBuildList buildList = buildListCalculator.calculateProjectBuilds(session, taskSegments);
            final ProjectBuildList segments = buildList.getByTaskSegment(taskSegments.get(0));
            assertEquals(3, taskSegments.size(), "Stub data contains 3 segments");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/BuildListCalculator.java

    /**
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @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();
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top