2

I'm unable to export a runnable .jar file. When I export the java project (using the eclipse export wizard) and then try to run the resulting .jar file I only get errors that jwgl library can't be found! What can I do to get a working .jar file?

Thanks in advance! Regards Fleckdalm

Fleckdalm
  • 175
  • 2
  • 10

1 Answers1

0

You can export runnable jar with maven. Just run

mvn package

and projectname.jar and projectname-jar-with-dependencies.jar will apear under target directory.

tpimh
  • 446
  • 2
  • 9
  • 23