I hava a .app application and I want to include it inside my project and launch it from inside a jar. Here is what I have so far:
Runtime.getRuntime().exec( new String[] { "open", "SomeApp.app"} );
SomeApp.app
is placed in the root of the src folder.