Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for jdkProperty1 (0.1 sec)

  1. maven-core/src/test/resources-project-builder/jdk-activation/pom.xml

          <activation>
            <jdk>[1.4,)</jdk>
          </activation>
          <properties>
            <jdkProperty1>PASSED</jdkProperty1>
          </properties>
        </profile>
        <profile>
          <id>test-2</id>
          <activation>
            <jdk>(,100)</jdk>
          </activation>
          <properties>
            <jdkProperty2>PASSED</jdkProperty2>
          </properties>
        </profile>
        <profile>
          <id>test-3</id>
          <activation>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(3, pom.getMavenProject().getActiveProfiles().size());
            assertEquals("PASSED", pom.getValue("properties/jdkProperty3"));
            assertEquals("PASSED", pom.getValue("properties/jdkProperty2"));
            assertEquals("PASSED", pom.getValue("properties/jdkProperty1"));
        }
    
        /* MNG-2174 */
        @Test
        void testProfilePluginMngDependencies() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
Back to top