I have managed to build a GraalVM / JavaFX build but when I run it I get the following error:
$ ./app
Jul 15, 2023 9:49:59 AM com.sun.javafx.application.PlatformImpl startup
WARNING: Unsupported JavaFX configuration: classes were loaded from 'unnamed module @21325036'
java.lang.ClassNotFoundException: com.sun.javafx.tk.quantum.QuantumToolkit
at java.base@17.0.6/java.lang.Class.forName(DynamicHub.java:1132)
at com.sun.javafx.tk.Toolkit.getToolkit(Toolkit.java:253)
at com.sun.javafx.application.PlatformImpl.startup(PlatformImpl.java:290)
...
It states the guilty module is 'unnamed module @21325036', which is pretty useless to me. How do I map this id to the module's actual name so I can find out what is wrong?