I made a project a while ago and compiled to an executable JAR file. Now I'm using JarSplice to wrap it in native executables. How to I specify that the main class is in my JAR? The only instructions are to tell it the package path to the main class, but it seems like that assumes you are using JarSplice with an unbuilt project.
- I added my executable JAR.
- The JAR's internal path to the main class is "tproxy.gui.Interface".
- Should the class path be something like "JarName/tproxy.gui.Interface"?
EDIT: I need to wrap the JAR in an .app executable for OS X, so Launch4j isn't an option.