I wrote a complex Java application with eclipse that uses many .jar libraries included into project folder.
Is there a quick way to export a running configuration of
Exporting:
Importing:
You can get the full command executed by your configuration on the Debug tab, or more specifically the Debug view.
Done. You get a JAR file you can execute with java -jar yourfile.jar
Note that if your launcher had command line arguments, they don't get exported, you have to pass them to the java
command.
Now, to run a run configuration "run-config-1" you may type on your command line (Assuming you have ant on your shell's PATH)
ant run-config-1