I have a multi-module Maven project, and I would like to assemble together artifacts created by running the assembly plugin on individual modules. Is this possible?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes it is possible to do so using the project dependencies which can read in detail on the documentation of the Maven Assembly Plugin. |
|||
|
|
|
I think I have found the answer to my own problem by running the assembly plugin during the package phase for each sub-module. This guarantees that when I run the assembly on the top level project, all sub-modules would have been assembled. The plugin configuration in my top level POM looks like:
|
|||
|
|