Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getProjectBuildList (0.25 sec)

  1. 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()
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 5K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxerTest.java

        final String paid = "Paid";
    
        final String in = "In";
    
        final String full = "Full";
    
        @Test
        void testSingleThreaded() throws Exception {
            ProjectBuildList src = getProjectBuildList();
            ProjectBuildList projectBuildList = new ProjectBuildList(Arrays.asList(src.get(0), src.get(1), src.get(2)));
    
            ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  3. 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();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  4. 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();
            assertThat(
                    "This test assumes there are at least 6 elements in projectBuilds",
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2K bytes
    - Viewed (0)
  5. 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,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 8.7K bytes
    - Viewed (0)
Back to top