Я создал проект JavaFX в IntelliJ IDEA 2018. Я установил Java JDK 11, и мой проект (Maven) включает в себя все необходимые зависимости:
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>11</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>11</version>
</dependency>
</dependencies>
Но когда я пытаюсь запустить приложение, я получаю:
Error:(3, 26) java: cannot access javafx.application.Application
bad class file: C:\Users\Baterka\.m2\repository\org\openjfx\javafx-graphics\11\javafx-graphics-11-win.jar(javafx/application/Application.class)
class file has wrong version 54.0, should be 52.0
Please remove or make sure it appears in the correct subdirectory of the classpath.
Где проблема?Какие версии 54 и 52?Поддерживается ли JavaFX в новой версии Java 11?