maven: Including module assembly into assembly of parent project
Posted
by Ilya Izhovkin
on Stack Overflow
See other posts from Stack Overflow
or by Ilya Izhovkin
Published on 2010-05-21T07:22:46Z
Indexed on
2010/05/21
7:30 UTC
Read the original article
Hit count: 333
I have a set of projects, each has been configured to build with maven, and each has assembly plugin enabled. So, I have something like that:
project1/
target/
lib/
...
project1-1.0.jar
start.sh
...
project2/
target/
lib/
...
project2-1.0.jar
start.sh
...
I need to create parent project, and configure assembly for it, which must include all subproject's assemblies.
parent_project/
target/
project1/
lib/
...
project1-1.0.jar
project2/
lib/
...
project2-1.0.jar
start.sh
...
How can I achieve this?
© Stack Overflow or respective owner