vote up 5 vote down star
2

Is it possible to specify a Java classpath that includes a JAR file contained within another JAR file?

flag

69% accept rate

6 Answers

vote up 6 vote down check

If you're trying to create a single jar that contains your application and it's required libraries, there are two ways (that I know of) to do that. The first is One-Jar, which uses a special classloader to allow the nesting of jars. The second is UberJar, (or Shade), which explodes the included libraries and puts all the classes in the top-level jar.

I should also mention that UberJar and Shade are plugins for Maven1 and Maven2 respectively. As mentioned below, you can also use the assembly plugin (which in reality is much more powerful, but much harder to properly configure).

link|flag
vote up 1 vote down

Not without writing your own class loader. You can add jars to the jar's classpath, but they must be co-located, not contained in the main jar.

link|flag
vote up 1 vote down

You need to build a custom class-loader to do this or a third-party library that supports this. Your best bet is to extract the jar from the runtime and add them to the classpath (or have them already added to the classpath).

link|flag
vote up 0 vote down

I was about to advise to extract all the files at the same level, then to make a jar out of the result, since the package system should keep them neatly separated. That would be the manual way, I suppose the tools indicated by Steve will do that nicely.

link|flag
vote up 0 vote down

I use maven for my java builds which has a plugin called the maven assembly plugin.

It does what your asking, but like some of the other suggestions describe - essentially exploding all the dependent jars and recombining them into a single jar

link|flag
The Maven assembly plugin is pretty painful to use ... UberJar and Shade are Maven1 and Maven2 plugins (a fact I should have mentioned above, and will do so now) – Steve Moyer Oct 8 '08 at 19:09
vote up 2 vote down

See http://stackoverflow.com/questions/81260/java-easiest-way-to-merge-a-release-into-one-jar-file for a way to pack them all into one.

link|flag

Your Answer

Get an OpenID
or

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