0

**can anyone help me with this ? ** when i get to run my application hello in javafx using intellij for the first time after the set up ,this msg appears in my compiler into my module.info and i don't get where is the exact problem ##

pom.xml :

<dependencies>
    <dependency>
        <groupId>org.openjfx</groupId>
        <artifactId>javafx-controls</artifactId>
        <version>17.0.1</version>
    </dependency>
    <dependency>
        <groupId>org.openjfx</groupId>
        <artifactId>javafx-fxml</artifactId>
        <version>17.0.1</version>
    </dependency>

    <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter-api</artifactId>
        <version>${junit.version}</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter-engine</artifactId>
        <version>${junit.version}</version>
        <scope>test</scope>
    </dependency>
</dependencies>

Module com.example.demo

requires javafx.controls;
requires javafx.fxml;


opens com.example.demo to javafx.fxml;
exports com.example.demo;
Loubna
  • 1
  • Create a [new project using the new JavaFX project wizard](https://stackoverflow.com/a/71500774/1155209). Follow [Intellij's instructions](https://www.jetbrains.com/help/idea/javafx.html). – jewelsea Mar 20 '22 at 07:13

0 Answers0