I am using a gradle build with Intellij IDEA to port a java-8 application into the 2020s. It requires the javafx.web module. I can't activate it!
My build.gradle contains the dependency:
// https://mvnrepository.com/artifact/org.openjfx/javafx-web
implementation group: 'org.openjfx', name: 'javafx-web', version: '20-ea+11'e here
and the javafx spec:
modules = ['javafx.controls', 'javafx.fxml', 'javafx.media', 'javafx.web']type here
My main javafx version is 17.02, but for javafx.web I have been trying through all listed versions. But for none of them does the module-info auto-complete for javafx.. allow me to specify 'web'.When I type it in, it become red (error). But javafx.webempty is available every time. Only that doesn't help me.