Maven pom.xml: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 12: Line 12:


Is optional. See <tt>[[#.3CartifactId.3E|<artifactId>]]</tt>.
Is optional. See <tt>[[#.3CartifactId.3E|<artifactId>]]</tt>.


=Properties=
=Properties=

Revision as of 01:37, 30 May 2016

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