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?!
feedback
|
|
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 Another option is to use ant. Unpack all JAR files into a temp directory and jar them up again. | ||||
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. | |||
|
feedback
|
|
I guess you could modify your build script to include the libraries. If I undestand correctly you can put into your
| |||
|
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. | |||
|
feedback
|
|
You can export an XML file from eclipse,then analyse the file to get the jars you want - see this link. | ||||
|
feedback
|