How to build (export to jar) project in Eclipse with Proclipse?

I would like to calculate the output files of my program on a different computer (it's computationally intensive) and therefore I would like to build the application so that I don't have to install eclipse on each of the PCs I'm using.

I tried exporting it like a general java jar application, but it won't start.

Thank you

Answers

  • Answer ✓

    What helped me out when exporting as a JAR from Eclipse was exporting as a Runnable JAR File, and then extracting necessary libraries into the JAR instead of packaging them. So, I suggest you try that to start with.

Sign In or Register to comment.