Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for element (0.21 sec)

  1. maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/sub/pom.xml

      <name>Maven Integration Test :: MNG-3979</name>
      <description>
        Test that during inheritance the merging/joining of subtrees with equal identifier doesn't crash if the parent
        POM has a non-empty element and the child POM has an empty element to join.
      </description>
    
      <properties/>
    
      <repositories>
        <repository>
          <id>equal-repo-id</id>
          <url>file:///${basedir}/null</url>
          <snapshots/>
          <releases/>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/pom.xml

      <name>Maven Integration Test :: MNG-3979</name>
      <description>
        Test that during inheritance the merging/joining of subtrees with equal identifier doesn't crash if the parent
        POM has a non-empty element and the child POM has an empty element to join.
      </description>
    
      <properties>
        <prop0>test</prop0>
      </properties>
    
      <repositories>
        <repository>
          <id>equal-repo-id</id>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.8K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/plugin-exec-merging-wo-version/sub/pom.xml

        version.
      </description>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-a</artifactId>
            <!-- NOTE: <version> element deliberately omitted here -->
            <executions>
              <execution>
                <id>child-1</id>
                <phase>child-1</phase>
              </execution>
              <execution>
                <id>child-2</id>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-exec-merging/w-plugin-mgmt/pom.xml

              <artifactId>maven-it-plugin-a</artifactId>
              <version>2.1-SNAPSHOT</version>
              <executions>
                <execution>
                  <!-- NOTE: Implicitly reference "default" id here, i.e. omit the <id> element -->
                  <phase>parent-default</phase>
                </execution>
                <execution>
                  <id>non-default</id>
                  <phase>parent-non-default</phase>
                </execution>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/pom.xml

            <artifactId>maven-it-plugin-a</artifactId>
            <version>2.1-SNAPSHOT</version>
            <executions>
              <execution>
                <!-- NOTE: Implicitly reference "default" id here, i.e. omit the <id> element -->
                <phase>parent-default</phase>
              </execution>
              <execution>
                <id>non-default</id>
                <phase>parent-non-default</phase>
              </execution>
            </executions>
    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)
  6. maven-core/src/test/resources-project-builder/mailing-lists-inheritance/child-2/pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <!--
      While <mailingLists> are inherited, they are not aggregated, only the child elements are used.
      -->
    
      <parent>
        <groupId>org.apache.maven.its.mng3843</groupId>
        <artifactId>parent-1</artifactId>
        <version>0.1</version>
      </parent>
    
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/developers-inheritance/child-2/pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <!--
      While <developers> are inherited, they are not aggregated, only the child elements are used.
      -->
    
      <parent>
        <groupId>org.apache.maven.its.mng3843</groupId>
        <artifactId>parent-1</artifactId>
        <version>0.1</version>
      </parent>
    
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-config-attributes/wo-plugin-mgmt/pom.xml

      <artifactId>test1</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-4053</name>
      <description>
        Verify that attributes in plugin configuration elements are not erroneously duplicated to other elements when
        no plugin management is used.
      </description>
    
      <build>
        <!-- NOTE: This test does not use plugin management for the IT 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)
  9. maven-core/src/test/projects/lifecycle-executor/project-with-additional-lifecycle-elements/pom.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>org.apache.maven.lifecycle.test</groupId>
      <artifactId>project-with-additional-lifecycle-elements</artifactId>
      <packaging>jar</packaging>
      <version>1.0</version>
      <name>project-with-additional-lifecycle-elements</name>
      <url>http://maven.apache.org</url>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 2.4K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-config-attributes/w-profile/pom.xml

      <artifactId>test3</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-4053</name>
      <description>
        Verify that attributes in plugin configuration elements are not erroneously duplicated to other elements when
        plugin management and a profile are used.
      </description>
    
      <build>
        <!-- NOTE: This test used plugin management for the IT plugin -->
        <pluginManagement>
          <plugins>
    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)
Back to top