Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ProjectBuildList (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top