Maven pom.xml: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
=External=
* POM reference https://maven.apache.org/pom.html
=Internal=
=Internal=



Revision as of 16:25, 4 November 2016

External

Internal

Overview

<project> is the root element.

Elements

<modelVersion>

Mandatory. Should be:

<modelVersion>4.0.0</modelVersion>

<groupId>

Mandatory.

<artifactId>

Mandatory. The artifactId is generally the name that the project is known by.

<version>

Mandatory.

<name>

Optional. See <artifactId>.

<properties>

<project>
  <properties>
    <some.property>something</some.property>
    <some.other.property>something else</some.other.property>
  </properties>
  ..