Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for said (0.15 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("https://project.url/download", pom.getValue("distributionManagement/downloadUrl"));
            assertEquals("reloc-gid", pom.getValue("distributionManagement/relocation/groupId"));
            assertEquals("reloc-aid", pom.getValue("distributionManagement/relocation/artifactId"));
            assertEquals("reloc-version", pom.getValue("distributionManagement/relocation/version"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  2. maven-artifact/src/test/java/org/apache/maven/artifact/ArtifactUtilsTest.java

    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests {@link ArtifactUtils}.
     *
     */
    class ArtifactUtilsTest {
    
        private Artifact newArtifact(String aid) {
            return new DefaultArtifact("group", aid, VersionRange.createFromVersion("1.0"), "test", "jar", "tests", null);
        }
    
        @Test
        void testIsSnapshot() {
            assertFalse(ArtifactUtils.isSnapshot(null));
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java

            }
    
            MavenProject project =
                    projectBuilder.build(pom.toFile(), buildingRequest).getProject();
            assertThat(project.getName(), is("aid")); // inherited from artifactId
    
            try (InputStream pomResource =
                    DefaultMavenProjectBuilderTest.class.getResourceAsStream("/projects/reread/pom2.xml")) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:04:04 GMT 2023
    - 16.5K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxerTest.java

            System.out.print(paid); // No, this does not print to system.out. It's part of the test
            assertEquals(paid.length(), byteArrayOutputStream.size());
            threadOutputMuxer.associateThreadWithProjectSegment(projectBuildList.get(1));
            System.out.print(in); // No, this does not print to system.out. It's part of the test
            assertEquals(paid.length(), byteArrayOutputStream.size());
    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)
Back to top