I know this isn't "best practice", but can I include all of the dependencies in one big jar?
|
1
|
|
|
|
|
|
There's a utility called One-Jar which does what you want, although I'd advise against it. The performance is usually awful. |
||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
Using the good old Ant: just use
This will flatten all included jar libraries' content. |
||
|
|
|
|
|
||
|
|
|
I used maven assembly plugin with jar-with-dependencies descriptor |
||||
|
|
|
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. |
||
|
|
|
Often you can, but sometimes there are unusual legal or technical reasons not to.
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. |
|||
|
