Re: Aggregate m2 modules in a unique jar file

2006-10-19 Thread Thomas Recloux
Thanks a lot ! 2006/10/18, Dan Tran [EMAIL PROTECTED]: create jar packaging project with empty source. Use maven-dependency-plugin to unpack all your jars into ${project.output.directory} before package phase. Wala, all your unpacked classes got pack again in a deployable jar. -D On

Aggregate m2 modules in a unique jar file

2006-10-18 Thread Thomas Recloux
Hello all, I'have got a projet with some modules producing their jars, but I'd like to produce one jar including all modules classes. I looked at the assembly plugin, but : - There is not jar format - I think I wil not be able to install or deploy the generated jar in local and remote repos.

Re: Aggregate m2 modules in a unique jar file

2006-10-18 Thread Dan Tran
create jar packaging project with empty source. Use maven-dependency-plugin to unpack all your jars into ${project.output.directory} before package phase. Wala, all your unpacked classes got pack again in a deployable jar. -D On 10/17/06, Thomas Recloux [EMAIL PROTECTED] wrote: Hello all,

Re: Aggregate m2 modules in a unique jar file

2006-10-18 Thread Mirko Leschikar
Hi Thomas, Thomas Recloux schrieb: Hello all, I'have got a projet with some modules producing their jars, but I'd like to produce one jar including all modules classes. I looked at the assembly plugin, but : - There is not jar format - I think I wil not be able to install or deploy