0

Is there a way to export java project with external jar library as a single file, so it can run on other machines from command line (no gui).

  • Possible duplicate of [Eclipse: How to build an executable jar with external jar?](https://stackoverflow.com/questions/502960/eclipse-how-to-build-an-executable-jar-with-external-jar) – Igor Quirino Sep 06 '18 at 21:13
  • @IgorQuirino Given this question makes no reference to Eclipse, that question is not a duplicate of this one. – Mark Rotteveel Sep 08 '18 at 13:05

1 Answers1

0

Look up how to do a "Fat Jar". A "Fat Jar" has all of the dependencies inside of the jar.

Steven McConnon
  • 2,650
  • 2
  • 16
  • 21