A small JavaFX 14 non-modular application that shows how to use the Badass Runtime Plugin.
It allows you to create a custom runtime image of your application. The start script configures the application to use class data sharing.
Running with gradle:
./gradlew run
A window containing the text Hello, OpenJFX!
should appear on the screen.
Creating and executing a custom runtime image:
./gradlew runtime
cd build/image/bin
./hellofx
A window containing the text Hello, OpenJFX!
should appear on the screen.