vote up 3 vote down star
1

I know this isn't "best practice", but can I include all of the dependencies in one big jar?

flag

9 Answers

vote up 2 vote down check

There's a utility called One-Jar which does what you want, although I'd advise against it. The performance is usually awful.

link|flag
Please elaborate on the awful performance. I use it, and would appreciate the feedback. – Thorbjørn Ravn Andersen Jun 29 at 21:58
I haven't used it for a long time now, but I recall that the classloading performance was very poor, due to the way that the JARs were unpacked. But like I say, it's been a while. – skaffman Jun 29 at 22:16
vote up 0 vote down

Also remember that .jar files are .zip files under the covers. You can use your favorite zip tools to (re)package them. In this case, you would have to deal with the manifest file yourself.

link|flag
vote up 1 vote down

Just for completeness, ProGuard will do this for you, as well as optionally obfuscating and shrinking JARs. The latter function is especially useful for creating final deployment JARs.

link|flag
vote up 1 vote down

Eclipse 3.4 and up allows you to do this. Right click your project, select Extract, and navigate to the Runnable Jar option. Select Next. Choose the appropriate settings and your off and running. Also I seem to recall that this functionality is achieved using the same or similar libraries that FatJar (mentioned above) uses.

link|flag
vote up 5 vote down

Using the good old Ant: just use zipgroupfileset with the Ant Zip task

<zip destfile="out.jar">
    <zipgroupfileset dir="lib" includes="*.jar"/>
</zip>

This will flatten all included jar libraries' content.

link|flag
vote up 2 vote down
  • You can unjar files and repack them using the command line

  • You can use [uberjar]

  • You can use fatjar

link|flag
fatjar uses one-jar mentioned elsewhere – Thorbjørn Ravn Andersen Jun 29 at 21:59
vote up 4 vote down

I used maven assembly plugin with jar-with-dependencies descriptor

link|flag
1  
+1. Maven is pretty awesome for taking care of this type of stuff. However I recommend creating a custom assembly rather than using the default jar-with-dependencies since you can get much better results that way. Also, it is worth noting that the latest assembly plugin is somewhat buggy & add multiple copies of your dependencies, so until that is fixed I recommend using the previous version. – DB Jun 29 at 19:01
vote up 4 vote down

If you want to do this there is a tool called Jar Jar Links which will do this for you. Never used it but it is hard to forget the name.

link|flag
minus one million for the pun – skaffman Jun 29 at 19:00
vote up 1 vote down

Often you can, but sometimes there are unusual legal or technical reasons not to.

  • Legal: For example, we discovered that at the time we wanted to, we could not bundle the JavaMail jar files together into one big package with the rest of our app, but the license agreement said we had to keep them separate.

  • Technical: Another problem might be custom class loaders look for specific resources or classes inside of specific jar files. This often happens in the context of containers for application servers or ESBs.

How: To do it, just unjar everything into one directory, and then rebuild a jar from there. You might have to tweak some settings in the META-INF folder to remove the requests to load the additional jars, and to handle the case where different jars each have a default class to run. There are some third-party utilities which might help, but unless you know what they are doing, you'd want to be careful.

link|flag
lets assume its legal, how do you do it? – Eric Jun 29 at 18:55

Your Answer

Get an OpenID
or

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