Use LTS JavaFX

This commit is contained in:
Tyler 2024-07-24 21:00:08 +01:00
parent 21fa946011
commit 1187bedc5b
Signed by: observer
GPG Key ID: 934A62C2C469FFAF

14
pom.xml
View File

@ -6,31 +6,23 @@
<groupId>com.shr4pnel.minesweeper</groupId> <groupId>com.shr4pnel.minesweeper</groupId>
<artifactId>libremines</artifactId> <artifactId>libremines</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0</version>
<properties> <properties>
<maven.compiler.source>21</maven.compiler.source> <maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target> <maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties> </properties>
<profiles>
<profile>
<id>web</id>
<properties>
<gluonfx.target>web</gluonfx.target>
</properties>
</profile>
</profiles>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.openjfx</groupId> <groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId> <artifactId>javafx-controls</artifactId>
<version>21.0.3</version> <version>21.0.4</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.openjfx</groupId> <groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId> <artifactId>javafx-fxml</artifactId>
<version>21.0.3</version> <version>21.0.4</version>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>