Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for siteOut (0.17 sec)

  1. maven-core/src/test/resources-project-builder/basedir-aligned-interpolation/pom.xml

        <buildOut>${project.build.directory}</buildOut>
        <buildMainOut>${project.build.outputDirectory}</buildMainOut>
        <buildTestOut>${project.build.testOutputDirectory}</buildTestOut>
        <siteOut>${project.reporting.outputDirectory}</siteOut>
      </properties>
    
      <build>
        <!--
        NOTE: Deliberately set all build directories to relative paths to ensure they really need basedir alignment.
        -->
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                    new File(pom.getValue("properties/buildTestOut").toString()));
            assertEquals(
                    new File(pom.getBasedir(), "target/site"),
                    new File(pom.getValue("properties/siteOut").toString()));
        }
    
        /* MNG-3944*/
        @Test
        void testInterpolationOfBasedirInPomWithUnusualName() throws Exception {
    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)
Back to top