У меня проблемы с настройкой проекта JavaFx.
Вот моя информация о модуле:
module OOPIII_MVC_observerPattern_javaFx {
requires javafx.controls;
requires javafx.graphics;
requires javafx.base;
requires javafx.fxml;
requires java.desktop;
opens gui to javafx.graphics, javafx.fxml, javafx.base, javafx.controls;
opens main to javafx.graphics, javafx.fxml;
}
И мой путь сборки Java: Путь сборки Java
Это дает мне эту ошибку:
Error occurred during initialization of boot layer
java.lang.module.FindException: Module OOPIII_MVC_observerPattern_javaFx not found
Кто-нибудь знает, что может это исправить?
Спасибо.