Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for modelVersion1 (0.04 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                // XML schema and this will not change anytime soon. We do not want to build effective models based on
                // models without a version starting with 3.4.
                validateStringNotEmpty("modelVersion", problems, Severity.ERROR, Version.V20, m.getModelVersion(), m);
    
                validateModelVersion(problems, m.getModelVersion(), m, "4.0.0");
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 03 15:06:05 UTC 2025
    - 66.8K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

        }
    
        private static ModelSource createStubModelSource(Artifact artifact) {
            String xml = "<?xml version='1.0'?>" + "<project>"
                    + "<modelVersion>4.0.0</modelVersion>"
                    + "<groupId>"
                    + artifact.getGroupId() + "</groupId>" + "<artifactId>"
                    + artifact.getArtifactId() + "</artifactId>" + "<version>"
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
  3. pom.xml

    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    	<modelVersion>4.0.0</modelVersion>
    	<artifactId>fess</artifactId>
    	<version>15.4.0-SNAPSHOT</version>
    	<packaging>war</packaging>
    	<name>Fess</name>
    	<description>Fess is Full tExt Search System.</description>
    	<url>https://fess.codelibs.org/</url>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 49.4K bytes
    - Viewed (0)
  4. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        @SuppressWarnings("checkstyle:MethodLength")
        private void testCompleteModel(PomTestWrapper pom) throws Exception {
            assertEquals("4.0.0", pom.getValue("modelVersion"));
    
            assertEquals("org.apache.maven.its.mng", pom.getValue("groupId"));
            assertEquals("test", pom.getValue("artifactId"));
            assertEquals("0.2", pom.getValue("version"));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 94.8K bytes
    - Viewed (0)
Back to top