Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Tanghe (0.24 sec)

  1. maven-core/src/test/resources/projects/parent-version-range-local-child-project-parent-version-expression/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>parent-version-range-local</groupId>
      <artifactId>parent</artifactId>
      <version>1</version>
      <packaging>pom</packaging>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Feb 01 13:35:07 GMT 2022
    - 192 bytes
    - Viewed (0)
  2. maven-core/src/test/resources/projects/parent-version-range-external-child-project-version-expression/pom.xml

      <parent>
        <groupId>org.apache</groupId>
        <artifactId>apache</artifactId>
        <version>[1,1]</version>
      </parent>
      <artifactId>child</artifactId>
      <!-- Must not use ${project.version} due to version range. -->
      <version>${project.version}</version>
      <packaging>pom</packaging>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Feb 01 13:35:07 GMT 2022
    - 347 bytes
    - Viewed (0)
  3. api/maven-api-plugin/src/main/mdo/plugin.mdo

            </field>
            <field>
              <name>requiredJavaVersion</name>
              <version>1.1.0+</version>
              <description>
                A version range which specifies the supported Java versions. A version range can either use the usual mathematical syntax "[2.0.10,2.1.0),[3.0,)" or use a single version "2.2.1". The latter is a short form for "[2.2.1,)", i.e. denotes the minimum version required.
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/parent-version-range-local-valid/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>parent-version-range-local</groupId>
      <artifactId>parent</artifactId>
      <version>1</version>
      <packaging>pom</packaging>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:50:27 GMT 2020
    - 192 bytes
    - Viewed (0)
  5. maven-core/src/test/resources/projects/parent-version-range-local-child-without-version/child/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>parent-version-range-local</groupId>
        <artifactId>parent</artifactId>
        <version>[1,10]</version>
      </parent>
      <artifactId>child</artifactId>
      <!-- version>1</version Must not inherit version from parent due to version range. -->
      <packaging>pom</packaging>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Fri Feb 10 21:46:52 GMT 2017
    - 348 bytes
    - Viewed (0)
  6. maven-core/src/test/resources/projects/parent-version-range-local-child-without-version/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>parent-version-range-local</groupId>
      <artifactId>parent</artifactId>
      <version>1</version>
      <packaging>pom</packaging>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:50:27 GMT 2020
    - 192 bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/parent-version-range-external-child-pom-version-expression/pom.xml

      <parent>
        <groupId>org.apache</groupId>
        <artifactId>apache</artifactId>
        <version>[1,1]</version>
      </parent>
      <artifactId>child</artifactId>
      <!-- Must not use ${project.version} due to version range. -->
      <version>${project.version}</version>
      <packaging>pom</packaging>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Feb 01 13:35:07 GMT 2022
    - 347 bytes
    - Viewed (0)
  8. maven-core/src/test/resources/projects/parent-version-range-external-child-without-version/pom.xml

        <groupId>org.apache</groupId>
        <artifactId>apache</artifactId>
        <version>[1,1]</version>
      </parent>
      <artifactId>child</artifactId>
      <!-- version>2</version Must not inherit version from parent due to version range. -->
      <packaging>pom</packaging>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Fri Feb 10 21:46:52 GMT 2017
    - 331 bytes
    - Viewed (0)
  9. maven-core/src/test/resources/projects/parent-version-range-local-child-revision-expression/child/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>parent-version-range-local</groupId>
        <artifactId>parent</artifactId>
        <version>[1,10]</version>
      </parent>
      <artifactId>child</artifactId>
      <version>${revision}</version>
      <packaging>pom</packaging>
      <properties>
        <revision>1.0-SNAPSHOT</revision>
      </properties>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Feb 01 13:35:07 GMT 2022
    - 361 bytes
    - Viewed (0)
  10. maven-core/src/test/resources/projects/parent-version-range-local-child-project-version-expression/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>parent-version-range-local</groupId>
      <artifactId>parent</artifactId>
      <version>1</version>
      <packaging>pom</packaging>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Feb 01 13:35:07 GMT 2022
    - 192 bytes
    - Viewed (0)
Back to top