Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 558 for modelVersion (0.17 sec)

  1. maven-compat/src/test/resources/inheritance-repo/t09/maven-test/poms/t09-b-1.0.pom

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven-test</groupId>
      <artifactId>t09-b</artifactId>
      <packaging>jar</packaging>
      <version>1.0</version>
    
      <dependencies>
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>t09-c</artifactId>
          <version>1.0</version>
          <scope>compile</scope>
        </dependency>
      </dependencies>
    
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 379 bytes
    - Viewed (0)
  2. maven-compat/src/test/resources/inheritance-repo/t09/maven-test/poms/t09-d-1.0.pom

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven-test</groupId>
      <artifactId>t09-d</artifactId>
      <packaging>jar</packaging>
      <version>1.0</version>
    
      <dependencies>
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>t09-c</artifactId>
          <version>1.0</version>
          <scope>compile</scope>
        </dependency>
      </dependencies>
    
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 379 bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/parent-interpolation/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>org.sonatype.nexus</groupId>
      <artifactId>nexus</artifactId>
      <version>1.3.0-SNAPSHOT</version>
      <packaging>pom</packaging>
      <build>
        <plugins>
          <plugin>
            <groupId>org.codehaus.modello</groupId>
            <artifactId>modello-maven-plugin</artifactId>
            <version>${project.version}</version>
          </plugin>
        </plugins>
      </build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 24 18:50:27 GMT 2020
    - 425 bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/parent-version-range-external-child-revision-expression/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>org.apache</groupId>
        <artifactId>apache</artifactId>
        <version>[1,1]</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
    - 344 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-compat/src/test/resources/inheritance-repo/t00/maven/poms/p3-1.0.pom

    <project>
      <parent>
        <artifactId>p2</artifactId>
        <groupId>maven</groupId>
        <version>1.0</version>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven</groupId>
      <artifactId>p3</artifactId>
      <packaging>pom</packaging>
      <name>p3</name>
      <version>1.0</version>
      <inceptionYear>2000</inceptionYear>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 335 bytes
    - Viewed (0)
  7. maven-compat/src/test/resources/local-repo/maven-test/poms/maven-test-c-1.0.pom

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven-test</groupId>
      <artifactId>maven-test-c</artifactId>
      <packaging>jar</packaging>
      <version>1.0</version>
      <dependencies>
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>maven-test-d</artifactId>
          <version>1.2</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
      </dependencies>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 414 bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-inheritance-simple/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>gid</groupId>
      <artifactId>aid</artifactId>
      <version>1.0</version>
      <packaging>pom</packaging>
      <build>
        <plugins>
          <plugin>
            <groupId>org.codehaus.modello</groupId>
            <artifactId>modello-maven-plugin</artifactId>
            <version>1.0-alpha-21</version>
          </plugin>
        </plugins>
      </build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 24 18:50:27 GMT 2020
    - 391 bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/dependency-scope-inheritance/sub/pom.xml

    <project>
      <parent>
        <artifactId>p0</artifactId>
        <groupId>maven</groupId>
        <version>1.0</version>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven</groupId>
      <artifactId>p1</artifactId>
      <version>1.0</version>
    
      <dependencies>
        <dependency>
          <groupId>maven-test</groupId>
          <version>1.0</version>
          <artifactId>a</artifactId>
        </dependency>
      </dependencies>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 419 bytes
    - Viewed (0)
  10. maven-compat/src/test/resources/inheritance-repo/t00/maven/poms/p2-1.0.pom

    <project>
      <parent>
        <artifactId>p1</artifactId>
        <groupId>maven</groupId>
        <version>1.0</version>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven</groupId>
      <artifactId>p2</artifactId>
      <packaging>pom</packaging>
      <name>p2</name>
      <version>1.0</version>
      <mailingLists>
        <mailingList>
          <name>mailing-list</name>
        </mailingList>
      </mailingLists>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 401 bytes
    - Viewed (0)
Back to top