A simple weight conversion application designed to run on macOS and iOS using the Gluon substrate and GraalVM.
Building and running requires JDK11 and can be done with a simple mvn clean install
and mvn javafx:run
If you wish to bake the run command into Apache NetBeans you can modify the the nbactions.xml to include that command;
<actions>
<action>
<actionName>run</actionName>
<packagings>
<packaging>jar</packaging>
</packagings>
<goals>
<goal>process-classes</goal>
<goal>org.openjfx:javafx-maven-plugin:0.0.4:run</goal>
</goals>
<properties>
<exec.args>--enable-preview</exec.args>
<exec.executable>java</exec.executable>
</properties>
</action>
</actions>
Compilation for iOS requires additional steps to provision an iOS device for installation. I recommend reading the excellent tutorial on Gluon's own site.