Douglas KN
12/19/2019, 3:14 AMgradle run
. That seemed like a bug in the javafx gradle plugin -- the error message was because it was running with --module-path
that had no arguments. I managed to solve it by downloading openjfx 11 and setting sdk = 'javafx-sdk-11.0.2'
. Now I can build and run the app both directly via gradle and in intellij. HOWEVER, now intellij is red-underlining all javafx references because it can't find the library.
How do I tell intellij where to find the javafx library so that I don't get the underlines and code completion starts working again?Douglas KN
12/19/2019, 3:25 AM