Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getProjectBuildList (0.09 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/ConcurrencyDependencyGraphTest.java

    import static org.apache.maven.lifecycle.internal.stub.ProjectDependencyGraphStub.Z;
    import static org.apache.maven.lifecycle.internal.stub.ProjectDependencyGraphStub.getProjectBuildList;
    import static org.junit.jupiter.api.Assertions.assertEquals;
    
    /**
     */
    class ConcurrencyDependencyGraphTest {
        @Test
        void testConcurrencyGraphPrimaryVersion()
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/ProjectBuildListTest.java

        @Test
        void testGetByTaskSegment() throws Exception {
            final MavenSession session = ProjectDependencyGraphStub.getMavenSession();
            ProjectBuildList projectBuildList = ProjectDependencyGraphStub.getProjectBuildList(session);
            TaskSegment taskSegment = projectBuildList.get(0).getTaskSegment();
            assertTrue(
                    projectBuildList.size() >= 6,
    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/test/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraphTest.java

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

            X.setArtifactId("X");
            Y.setArtifactId("Y");
            Z.setArtifactId("Z");
        }
    
        // This should probably be moved to a separate stub
    
        public static ProjectBuildList getProjectBuildList(MavenSession session)
                throws InvalidPluginDescriptorException, PluginVersionResolutionException, PluginDescriptorParsingException,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.6K bytes
    - Viewed (0)
Back to top