Multi-Module Maven Projects: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 2: Line 2:


* Guide to Working with Multiple Modules https://maven.apache.org/guides/mini/guide-multiple-modules.html
* Guide to Working with Multiple Modules https://maven.apache.org/guides/mini/guide-multiple-modules.html
* A multi-module project http://books.sonatype.com/mvnex-book/reference/multimodule.html


=Internal=
=Internal=

Revision as of 17:22, 4 November 2016

External

Internal

Overview

For guidelines on when it is appropriate to use modules, and when separate projects, see "When We Should Use Modules ?" section.

<project>
    ...
    <modules>
        <module>module1</module>
        <module>module2</module>
    </modules>
    ...
</project>

Each <module> element corresponds to a subdirectory of the top level project directory. Maven will look into these subdirectories for pom.xml files. Each module will have its own independent source hierarchy.

The Reactor

When We Should Use Modules?

Two major benefits of a multi-module project are that all the parts can be built with a single command, and Maven handles the correct build order.

Modules and Versions

Different modules of the same project can have different version.

Organizatorium

  • The modules do not need to specify their <groupId>, as it is inherited from their parent, and thus redundant.