Hello Felix Users, I'm working on a project that must be shipped as either a Windows .exe or .msi. These installers are created by a Gradle build script that invokes Oracle's ant build tools to generate the native installer. Here is an example of the latter https://blogs.oracle.com/talkingjavadeployment/entry/native_packaging_for_javafx .
My main goal is to make the installed application upgradeable using OSGI. My understanding is that I would need to have the native application bootstrap the OSGI container, and then each bundle would be developed in the normal OSGI way. Is there a simple tutorial demonstrating bootstrapping an OSGI container, and preferably making JavaFX available to the bundles?

