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?
I have a multi-module Maven project, and I would like to assemble together artifacts
Share
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: