Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Lange (0.2 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-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)
  5. 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)
  6. 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)
  7. api/maven-api-model/src/main/mdo/maven.mdo

            <field>
              <name>timezone</name>
              <version>3.0.0+</version>
              <description>
                <![CDATA[
                  The timezone the contributor is in. Typically, this is a number in the range
                  <a href="http://en.wikipedia.org/wiki/UTC%E2%88%9212:00">-12</a> to <a href="http://en.wikipedia.org/wiki/UTC%2B14:00">+14</a>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  8. 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)
  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-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)
Back to top