Re: launching JavaFX in 11

2018-06-05 Thread Johan Vos
I fully agree with you the way forward is using named modules. The reason I ran into this issue was that I wanted to create a regression test: it should not work if the modules are not on the module-path. And surprisingly, it did work. The current check in the Launcher is hiding potential issues.

Re: launching JavaFX in 11

2018-06-05 Thread Kevin Rushforth
Hi Johan, The intention is to launch using --module-path     java --module-path path-to-sdk/javafx-sdk-11/lib ... For non-modular applications you also need to add the modules to the module graph, for example:     java --module-path path-to-sdk/javafx-sdk-11/lib --add-modules javafx.fxml,ja