Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for uncu (0.14 sec)

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

            assertEquals(0, ((List<?>) pom.getValue("modules")).size());
        }
    
        /** MNG-3621 */
        @Test
        void testUncPath() throws Exception {
            PomTestWrapper pom = this.buildPom("unc-path/sub");
            assertEquals("file:////host/site/test-child", pom.getValue("distributionManagement/site/url"));
        }
    
        /** MNG-2006 */
        @Test
    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-core/src/test/resources-project-builder/unc-path/pom.xml

      <groupId>org.apache.maven.its.mng3621</groupId>
      <artifactId>test-parent</artifactId>
      <version>1.0-SNAPSHOT</version>
      <packaging>pom</packaging>
    
      <name>MNG-3621 :: Parent</name>
      <description>Test inheritance of UNC paths</description>
    
      <modules>
        <module>child</module>
      </modules>
    
      <distributionManagement>
        <site>
          <id>site</id>
          <url>file:////host/site</url>
        </site>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.5K bytes
    - Viewed (0)
Back to top