Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for zOrder (0.16 sec)

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

                <stringParam>CHILD-1</stringParam>
                <stringParam>CHILD-3</stringParam>
                <stringParam>CHILD-2</stringParam>
                <stringParam>CHILD-4</stringParam>
              </stringParams>
              <listParam combine.children="append">
                <!-- NOTE: These values are deliberately not in alpha order! -->
                <listParam>CHILD-1</listParam>
    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)
  2. maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/pom.xml

              <version>2.1-SNAPSHOT</version>
              <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>
    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)
  3. maven-core/src/test/resources-project-builder/plugin-exec-order/w-plugin-mgmt/pom.xml

      <version>0.1</version>
      <packaging>pom</packaging>
    
      <name>Maven Integration Test :: MNG-3887</name>
      <description>
        Test that multiple plugin executions bound to the same phase are executed in the order given by the POM.
      </description>
    
      <build>
        <!-- This project uses plugin management for the test plugin -->
        <pluginManagement>
          <plugins>
            <plugin>
    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/dependency-order/w-plugin-mgmt/pom.xml

      <artifactId>test</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-4003</name>
      <description>
        Verify that dependencies survive the project construction in the POM order.
      </description>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven.its.mng4003</groupId>
          <artifactId>a</artifactId>
          <version>1</version>
        </dependency>
        <dependency>
    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)
  5. maven-core/src/test/resources-project-builder/dependency-order/wo-plugin-mgmt/pom.xml

      <artifactId>test</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-4003</name>
      <description>
        Verify that dependencies survive the project construction in the POM order.
      </description>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven.its.mng4003</groupId>
          <artifactId>a</artifactId>
          <version>1</version>
        </dependency>
        <dependency>
    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)
  6. maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/subproject/pom.xml

                <stringParam>CHILD-1</stringParam>
                <stringParam>CHILD-3</stringParam>
                <stringParam>CHILD-2</stringParam>
                <stringParam>CHILD-4</stringParam>
              </stringParams>
              <listParam combine.children="append">
                <!-- NOTE: These values are deliberately not in alpha order! -->
                <listParam>CHILD-1</listParam>
    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/resources-project-builder/inherited-properties-interpolation/no-profile/pom.xml

      <name>Maven Integration Test :: MNG-4102</name>
      <description>
        Verify that the effective value of an inherited property reflects the values of any nested property
        as defined by the child. This boils down to the order of inheritance and (parent) interpolation.
      </description>
    
      <properties>
        <overridden>PARENT</overridden>
        <!-- Test the effective value of this property in the child when "overridden" is defined by child as well -->
    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)
  8. maven-core/src/test/resources-project-builder/inherited-properties-interpolation/active-profile/sub/pom.xml

      <name>Maven Integration Test :: MNG-4102 :: Child</name>
      <description>
        Verify that the effective value of an inherited property reflects the values of any nested property
        as defined by the child. This boils down to the order of inheritance and (parent) interpolation.
      </description>
    
      <properties>
        <overridden>CHILD</overridden>
      </properties>
    
      <profiles>
        <profile>
          <id>it-child</id>
          <activation>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.6K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/plugin-exec-goals-order/wo-plugin-mgmt/pom.xml

      <artifactId>test</artifactId>
      <version>0.1</version>
      <packaging>pom</packaging>
    
      <name>Maven Integration Test :: MNG-3886</name>
      <description>
        Test that the goals from a plugin execution are executed in the order given by the POM, regardless whether
        plugin management is present or not.
      </description>
    
      <build>
        <!-- This project does not use plugin management for the test plugin -->
        <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)
  10. maven-core/src/test/resources-project-builder/profile-injection-order/pom.xml

      <artifactId>test</artifactId>
      <version>1.0-SNAPSHOT</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-2309</name>
      <description>
        Test that profiles are injected in declaration order, with the last profile being the most dominant.
      </description>
    
      <profiles>
        <!-- NOTE: Using intentionally more than two profiles to prevent random test success -->
        <profile>
          <id>pom-a</id>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.9K bytes
    - Viewed (0)
Back to top