(If you're working with Maven 4, please refer to the Maven 4 edition of this guide)
As seen in the introduction to the POM, Maven supports project aggregation in addition to project inheritance. This section outlines how Maven processes projects with multiple modules, and how you can work with them more effectively.
The mechanism in Maven that handles multi-module projects is referred to as the reactor. This part of the Maven core does the following:
Because modules within a multi-module build can depend on each other, it is important that the reactor sorts all the projects in a way that guarantees any project is built before it is required.
The following relationships are honoured when sorting projects:
<modules> element (if no other rule applies)Note that only “instantiated” references are used - dependencyManagement and pluginManagement elements do not cause a change to the reactor sort order.
No special configuration is required to take advantage of the reactor, however it is possible to customize its behavior.
The following command line switches are available:
--resume-from - resumes a reactor from the specified project (e.g. when it fails in the middle)--also-make - build the specified projects, and any of their dependencies in the reactor--also-make-dependents - build the specified projects, and any that depend on them--fail-fast - the default behavior - whenever a module build fails, stop the overall build immediately--fail-at-end - if a particular module build fails, continue the rest of the reactor and report all failed modules at the end instead--non-recursive - do not use a reactor build, even if the current project declares modules and just build the project in the current directoryRefer to the Maven command line interface reference for more information on these switches.