it helped me to create module-info.java file in src/main/java that looks like this
module HelloFX { requires javafx.controls; requires javafx.graphics; exports hellofx; //package name where the main class is }
image