This commit is contained in:
Sage The DM 2024-10-22 11:01:03 +02:00
parent df0fabee6f
commit a87e5186f6
20 changed files with 280 additions and 0 deletions

View file

@ -0,0 +1,3 @@
{
"java.configuration.updateBuildConfiguration": "interactive"
}

View file

@ -15,6 +15,11 @@
<artifactId>javafx-controls</artifactId>
<version>13</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-web</artifactId>
<version>19</version>
</dependency>
</dependencies>
<build>
<plugins>

View file

@ -1,4 +1,5 @@
module com.example {
requires javafx.controls;
requires javafx.web;
exports com.example;
}