I need to export jar from my Eclipse Java project and I want to include the referenced libraries. I can't use fatjar for this, which is what everyone seems to recommend. There must be another way of doing this. Does anyone know what this is?!

link|improve this question
2  
Please explain why you can't use farjar. Everyone recommends it because that's what everyone uses and it works well. So why should there be a another tool to do the same thing?? confused – Aaron Digulla Feb 9 '09 at 12:52
feedback

5 Answers

up vote 8 down vote accepted

The next version of Eclipse (3.5, due next June) has an option to include all necessary jars. It was introduced in 3.5M5 (thanks, basszero).

Or you can try to build your project with Maven 2. Then, you can build a "fat" jar with mvn assembly:assembly.

Another option is to use ant. Unpack all JAR files into a temp directory and jar them up again.

link|improve this answer
The recent milestone version of Eclipse (3.5M5) includes the feature you just mentioned. – basszero Feb 9 '09 at 13:09
feedback

I think its version 3.3 of Eclipse (ganymede) that has Export as Runnable JAR file. Last time I tried it, it did include the referenced libraries and also un-jars all the jars.

link|improve this answer
feedback

I guess you could modify your build script to include the libraries. If I undestand correctly you can put into your <jar destfile="myProject.jar"> ... <zipfileset src="theExternalLib.jar"> </jar>

link|improve this answer
feedback

Just posting a little (Helios) gotcha for using the Eclipse export Jar - you must first run (in Eclipse) a class with a main() method, otherwise the "Launch configuration" dropdown will be blank and you'll not be able to export.

link|improve this answer
feedback

You can export an XML file from eclipse,then analyse the file to get the jars you want - see this link.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown