The error in the title is what I have in my module-info.java. I am new to Java, so I hope I can understand your answers when you give them. I have found the other questions on here that ask the same question, and they probably have the answer, I just don't understand how to apply it to my situation.
javafx.base reads package javafx.beans
Package 'com.example' reads package 'javafx.beans' from both 'javafx.base' and 'javafx.base'
Here is what that file looks like:
module project{
requires javafx.controls;
requires javafx.fxml;
requires sikulixapi;
opens com.example to javafx.fxml;
exports com.example;
}
When I comment out both of the javafx.* require lines, the error goes away.
I am using Intellij Idea, I created a Javafx project and added Maven.
How would I go about finding the solution to this problem?