I have developed java Desktop application in eclipse, how to run(use) it in other system that is not having eclipse. I want to install application that i have developed in other systems not having eclipse.
2 Answers
Tu run Java Application you just need Java JRE and yourapp.jar. You can do this as here: http://help.eclipse.org/mars/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2Ftasks%2Ftasks-33.htm or just by build project correctly.
1 Comment
Jennifer
Thank u so much:-)
use maven to package your app: how to create a maven project
the package phase in maven creates a yourApp.jar which can be executed by the jvm. (if installed on the system)
commandline:
java -jar myApp.jar