Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for border (0.17 sec)

  1. maven-core/src/test/resources-project-builder/plugin-exec-order-with-lifecycle/pom.xml

      <packaging>JAR</packaging>
    
      <name>Maven Integration Test :: MNG-4341</name>
      <description>
        Test that plugins bound to the same phase get executed in POM order even if one of the plugins participates
        in the default lifecycle bindings for the project's packaging.
      </description>
    
      <build>
        <plugins>
          <plugin>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.9K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/plugin-config-append/with-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 21 03:35:09 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-exec-goals-order/w-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 uses plugin management for the test plugin -->
        <pluginManagement>
          <plugins>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-settings/test-pom-and-settings-interpolation/pom.xml

      <name>Maven Integration Test :: MNG-4107</name>
      <description>
        Test that POM interpolation uses the property values from the dominant profile source (POM vs. settings.xml).
        This boils down to the proper order of profile injection and interpolation, i.e.
        interpolate after profiles from all sources are injected.
      </description>
    
      <properties>
        <!-- collect the effective property values as derived by interpolation -->
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Jan 11 18:17:16 GMT 2021
    - 2.4K bytes
    - Viewed (0)
  5. 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 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  6. 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 21 03:35:09 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/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 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  8. 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 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  9. 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 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-exec-order/wo-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 does not use plugin management for the test plugin -->
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
Back to top