Multi-Module Maven Projects: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Maven Concepts") |
No edit summary |
||
Line 2: | Line 2: | ||
* [[Maven Concepts#Subjects|Maven Concepts]] | * [[Maven Concepts#Subjects|Maven Concepts]] | ||
=Overview= | |||
<pre> | |||
<project> | |||
... | |||
<modules> | |||
<module>module1</module> | |||
<module>module2</module> | |||
</modules> | |||
... | |||
</project> | |||
</pre> | |||
Each <tt><module></tt> element corresponds to a ''subdirectory'' of the top level project directory. Maven will look into these subdirectories for <tt>pom.xml</tt> files. Each module will have its own independent source hierarchy. |
Revision as of 20:41, 18 March 2016
Internal
Overview
<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.