Following this question Gluon Mobile project does not work with gradle 6, I want to know how to ship an application that uses gluon mobile and Java 14.
From what I read, gluon mobile only supports Java 14 if I use GraalVM with the client plugin (https://github.com/gluonhq/client-maven-plugin or https://github.com/gluonhq/client-gradle-plugin). I read https://github.com/dlemmermann/JPackageScriptFX to learn how to package a JavaFX app, but I don't think it's compatible with GraalVM's native image.
So it looks like I'm stuck. I can't use jpackage/link script above because I can't use Java 14, and if I use the client plugin with GraalVM to be able to use Java14, I can't use the jpackage/link script. How do I ship then?
Can I just ship a zip/jar with my whole gluon mobile app and the JDK module deps maybe? Then I won't need platform specific images or packaging.
My target platforms for now are Win and Mac, at least until I figure this thing out. I'm aware that everything here is quite new, so I'm not looking for miracles.