pom.xml File leads to the error described in the title. How to solve it ? <properties> <javafx.platform>linux</javafx.platform> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <javafx.version>22.0.1</javafx.version> </properties> ... <dependencies> <!-- https://mvnrepository.com/artifact/org.openjfx/javafx --> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx</artifactId> <version>${javafx.version}</version> <type>pom</type> </dependency> <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-graphics --> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-graphics</artifactId> <version>${javafx.version}</version> </dependency> ... </dependencies>