I'm creating a java command line project, with no GUI. The project uses any number of open source projects : Spring, Logback, Commons CLI etc. When I started to think about packaging, I imagined it would come out as a zip file, that could be exploded to the jar, with a lib sub directory, and dependent jars in the lib.

adapter.jar
 /lib/dependencyA.jar
 /lib/dependencyB.jar 
 etc.  

I've been playing with Maven Assembly, but it's still not coming out like the above, and I haven't found any examples that do generate the structure above. Is it possible to do so ? In addition, having a multi-module structure adds another layer of complexity that I haven't been able to resolve, as the assembly module can't find the core module as a dependency. This is my first Maven project, so am still learning how Maven works. I've been through the Sonatype book, but missed something as even using the Best Practices section couldn't get the missing dependency resolved. The examples I've seen usually involve merging into an uber executable jar, some of which use the Shade project, some don't. My question is, is doing an uber jar including 3rd party libs like Spring etc a good idea ? Or should I persevere with my original zip / lib subdirectory plan ?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Have your assembly module depend on the modules you want to package and then use the <dependencySets> of <moduleSets> tags to include them in any layout you wish. If you have some other files that do not come from a dependency, you can put them in the deployment module itself.

Please have a good read on the assembly descriptor docs. You can pack, unpack, include/exclude and set permissions for the files in your assembly.

In case you haven't seen the sonatype book on maven, here is the relevant chapter: http://www.sonatype.com/books/mvnref-book/reference/assemblies-sect-best-practices.html

EDIT: escaped the <'s

link|improve this answer
Thanks for the reply. I did some more work on it, and resolved the problems, but I'm still none the wiser as to whether this is the right approach. My original question was whether to go with uber-jar or carry on with the lib plan. Any advice, or reference material on the strategy ? – Scott The Scot Sep 12 '11 at 8:35
I started replying, but then I found I have more to say and it was a bit subjective for an SO answer, so I wrote a blog entry instead. Take a look and let me know what you think: foobarbazqux.blogspot.com/2011/09/… – ddimitrov Sep 13 '11 at 20:01
Yes, the blog entry was very useful and raised some points I hadn't considered - thank you ! – Scott The Scot Sep 14 '11 at 12:39
feedback

You just need to be more specific in your assembly descriptor. Use one dependencySet that includes only the main jar and delivers it to the top, and another that excludes only the main jar and delivers to the lib dir.

link|improve this answer
Thanks, and eventually I got the two dependency set idea working. Still none the wiser if it's the best approach for this situation though :) – Scott The Scot Sep 12 '11 at 8:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.