Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for paste (0.14 sec)

  1. maven-core/src/test/resources/projects/past-model-version-pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
        <!-- once we move past supporting modelVersion 4.0.0 we should update this version -->
        <modelVersion>3.9.9</modelVersion>
        <groupId>tests.project</groupId>
        <artifactId>past-model-version</artifactId>
        <version>1</version>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Mon Jun 03 20:33:44 GMT 2019
    - 1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom

    <!--
    
     !!!
    
     NOTE: If you change this file, you MUST bump the version up from 1.0. That is the version of the POM, and was
     used for releases of plexus-compiler and plexus-archiver in the past.
    
     !!!
    
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <artifactId>plexus</artifactId>
        <groupId>org.codehaus.plexus</groupId>
        <version>1.0.8</version>
      </parent>
      <groupId>org.codehaus.plexus</groupId>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 1.8K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom

    <!--
    
     !!!
    
     NOTE: If you change this file, you MUST bump the version up from 1.0. That is the version of the POM, and was
     used for releases of plexus-compiler and plexus-archiver in the past.
    
     !!!
    
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <artifactId>plexus</artifactId>
        <groupId>org.codehaus.plexus</groupId>
        <version>1.0.8</version>
      </parent>
      <groupId>org.codehaus.plexus</groupId>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 1.8K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java

            // update the resource if we stop supporting modelVersion 4.0.0
            File f1 = getTestFile("src/test/resources/projects/past-model-version-pom.xml");
    
            ProjectBuildingException e = assertThrows(
                    ProjectBuildingException.class, () -> getProject(f1), "Expected to fail for past versions");
            assertThat(e.getMessage(), containsString("Building this project requires an older version of Maven"));
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:04:04 GMT 2023
    - 16.5K bytes
    - Viewed (0)
Back to top