Maven pom.xml

From NovaOrdis Knowledge Base
Revision as of 16:21, 4 November 2016 by Ovidiu (talk | contribs) (→‎Overview)
Jump to navigation Jump to search

Internal

Overview

<project> is the root element.

Elements

<<modelVersion>

Mandatory. Should be:

<modelVersion>4.0.0</modelVersion>

<artifactId>

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

<name>

Is optional. See <artifactId>.

Properties

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