I have a multi module java maven project. When I build the parent project, it runs smoothly through all the modules, compiles them and creates the jar files each in its own module directory.
- parent
- module 1
-- target
--- mod1.jar
- modules 2
-- target
---mod2.jar
I would prefer to get all jar files from one single directory, the parent target dir for example.
- parent
-- target
--- mod1.jar
--- mod2.jar
- module 1
- module 1
Is this somehow possible?
Cheers, Christian