Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for listParam (0.21 sec)

  1. maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/subproject/pom.xml

              </stringParams>
              <listParam combine.children="append">
                <!-- NOTE: These values are deliberately not in alpha order! -->
                <listParam>CHILD-1</listParam>
                <listParam>CHILD-3</listParam>
                <listParam>CHILD-2</listParam>
                <listParam>CHILD-4</listParam>
              </listParam>
            </configuration>
            <executions>
              <execution>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/pom.xml

              <inherited>true</inherited>
              <configuration>
                <listParam>
                  <!-- NOTE: These values are deliberately not in alpha order! -->
                  <listParam>PARENT-1</listParam>
                  <listParam>PARENT-3</listParam>
                  <listParam>PARENT-2</listParam>
                  <listParam>PARENT-4</listParam>
                </listParam>
              </configuration>
            </plugin>
          </plugins>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/plugin-config-merging/pom.xml

            <configuration>
              <propertiesFile>FAILED</propertiesFile>
              <listParam>
                <listParam>FAILED-1</listParam>
                <listParam>FAILED-3</listParam>
                <listParam>FAILED-2</listParam>
                <listParam>FAILED-4</listParam>
              </listParam>
              <parent>PASSED</parent>
            </configuration>
          </plugin>
        </plugins>
      </build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/subproject/pom.xml

              </stringParams>
              <listParam combine.children="append">
                <!-- NOTE: These values are deliberately not in alpha order! -->
                <listParam>CHILD-1</listParam>
                <listParam>CHILD-3</listParam>
                <listParam>CHILD-2</listParam>
                <listParam>CHILD-4</listParam>
              </listParam>
            </configuration>
            <executions>
              <execution>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/plugin-config-merging/child/pom.xml

                <stringParam>PASSED-4</stringParam>
              </stringParams>
              <listParam>
                <listParam>PASSED-1</listParam>
                <listParam>PASSED-3</listParam>
                <listParam>PASSED-2</listParam>
                <listParam>PASSED-4</listParam>
              </listParam>
            </configuration>
            <executions>
              <execution>
                <phase>validate</phase>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.4K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/pom.xml

              <inherited>true</inherited>
              <configuration>
                <listParam>
                  <!-- NOTE: These values are deliberately not in alpha order! -->
                  <listParam>PARENT-1</listParam>
                  <listParam>PARENT-3</listParam>
                  <listParam>PARENT-2</listParam>
                  <listParam>PARENT-4</listParam>
                </listParam>
              </configuration>
            </plugin>
          </plugins>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("PARENT-1", pom.getValue(prefix + "listParam/listParam[1]"));
            assertEquals("PARENT-3", pom.getValue(prefix + "listParam/listParam[2]"));
            assertEquals("PARENT-2", pom.getValue(prefix + "listParam/listParam[3]"));
            assertEquals("PARENT-4", pom.getValue(prefix + "listParam/listParam[4]"));
            assertEquals("CHILD-1", pom.getValue(prefix + "listParam/listParam[5]"));
    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