Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for RANGE (0.17 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. maven-core/src/test/resources/projects/parent-version-range-local-child-project-version-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>
      <!-- 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
    - 364 bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/parent-version-range-local-child-revision-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)
  5. 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)
  6. maven-core/src/test/resources/projects/parent-version-range-local-child-project-parent-version-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>
      <!-- Must not use ${project.parent.version} due to version range. -->
      <version>${project.parent.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
    - 378 bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/parent-version-range-local-valid/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>
      <packaging>pom</packaging>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Fri Feb 10 21:46:52 GMT 2017
    - 282 bytes
    - Viewed (0)
  8. maven-core/src/test/resources/projects/parent-version-range-external-child-project-parent-version-expression/pom.xml

      <parent>
        <groupId>org.apache</groupId>
        <artifactId>apache</artifactId>
        <version>[1,1]</version>
      </parent>
      <artifactId>child</artifactId>
      <!-- Must not use ${project.parent.version} due to version range. -->
      <version>${project.parent.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
    - 361 bytes
    - Viewed (0)
  9. maven-core/src/test/resources/projects/parent-version-range-external-child-pom-parent-version-expression/pom.xml

      <parent>
        <groupId>org.apache</groupId>
        <artifactId>apache</artifactId>
        <version>[1,1]</version>
      </parent>
      <artifactId>child</artifactId>
      <!-- Must not use ${project.parent.version} due to version range. -->
      <version>${pom.parent.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
    - 357 bytes
    - Viewed (0)
  10. 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)
Back to top