Maven pom.xml

From NovaOrdis Knowledge Base
Revision as of 01:37, 30 May 2016 by Ovidiu (talk | contribs)
Jump to navigation Jump to search

Internal

Overview

<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>
  ..