Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 285 of 285 for modelVersion (0.11 sec)

  1. compat/maven-model-builder/src/site/apt/index.apt

      ({{{./xref/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.html}source}}).
    
      By default, every model field is inherited as-is from parent, with a few exceptions that are intentionally not inherited:
      <<<modelVersion>>>, <<<artifactId>>>, <<<profiles>>> (injected in phase 1) and <<<prerequisites>>>.
    
      Notice that the 5 URLs from the model (<<<project.url>>>, <<<project.scm.connection>>>, <<<project.scm.developerConnection>>>,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. 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.0.0-SNAPSHOT</version>
    	<packaging>war</packaging>
    	<name>Fess</name>
    	<description>Fess is Full tExt Search System.</description>
    	<url>https://fess.codelibs.org/</url>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 02:16:03 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            return new ModelData(
                    modelSource, parentModel, parent.getGroupId(), parent.getArtifactId(), parent.getVersion());
        }
    
        private Model getSuperModel(String modelVersion) {
            return superPomProvider.getSuperModel(modelVersion);
        }
    
        private void importDependencyManagement(
                Model model,
                ModelBuildingRequest request,
                DefaultModelProblemCollector problems,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 83.6K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

            <!-- Model Version                                                          -->
            <!-- ====================================================================== -->
    
            <field>
              <name>modelVersion</name>
              <version>4.0.0+</version>
              <required>true</required>
              <description>Declares to which version of project descriptor this POM conforms.</description>
              <type>String</type>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 09 11:07:31 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  5. test-site/activator-launch-1.3.2.jar

    ${ivy.pom.license} ${ivy.pom.header} <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> <groupId>${ivy.pom.groupId}</groupId> <artifactId>${ivy.pom.artifactId}</artifactId> <packaging>${ivy.pom.packaging}</packaging> <version>${ivy.pom.version}</version> <name>${ivy.pom.name}</name> <description>${ivy.pom.description}</description>...
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (0)
Back to top