Is it possible to package all the jar dependencies in one big jar?

dependencies, jar, java

Solution

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

Problem

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

Original source