Hi,

I have a multi-module project. I'd like to create a distribution where the classes from all modules are put into *one* jar file which is then included with the dependency jar files and zipped up, i.e.

Project
        ModuleA
        ModuleB
        ModuleC


project-bin.zip
project.jar <----- This jar file contains all classes from ModuleA, ModuleB and ModuleC
        dependencyA.jar
        dependencyB.jar


I'm currently able to use the assembly plugin to produce a zip file that contains a jar file per module and all the dependency jars i.e.

project-bin.zip
        ModuleA.jar
        ModuleB.jar
        ModuleC.jar
        dependencyA.jar
        dependencyB.jar


 but I really just want one jar file plus the dependency jars.


Any help greatly appreciated!

Cheers,

Matthew

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to