Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 3_11 (0.14 sec)

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

            String prop1 = pom.getValue("properties/prop1").toString();
            assertEquals(pom.getBasedir().toPath().toUri().toASCIIString(), prop1);
            assertThat(prop1, startsWith("file:///"));
        }
    
        /* MNG-3811*/
        @Test
        void testReportingPluginConfig() throws Exception {
            PomTestWrapper pom = buildPom("reporting-plugin-config/sub");
    
    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/reporting-plugin-config/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng3811</groupId>
      <artifactId>test-parent</artifactId>
      <version>1.0-SNAPSHOT</version>
      <packaging>pom</packaging>
    
      <name>MNG-3811 :: Parent</name>
      <description>Test inheritance of reporting plugin configuration</description>
    
      <modules>
        <module>child</module>
      </modules>
    
      <reporting>
        <plugins>
          <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.8K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/reporting-plugin-config/sub/pom.xml

    <parent>
      <groupId>org.apache.maven.its.mng3811</groupId>
      <artifactId>test-parent</artifactId>
      <version>1.0-SNAPSHOT</version>
      </parent>
      <artifactId>test-child</artifactId>
    
      <name>MNG-3811 :: Child</name>
    
      <reporting>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-configuration</artifactId>
            <version>2.1-SNAPSHOT</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.8K bytes
    - Viewed (0)
Back to top