Upgrade JavaFX libraries to 13.0.1

This commit is contained in:
0xboobface 2019-12-21 14:30:23 +01:00
parent e37c869695
commit 95fddfcb79
1 changed files with 4 additions and 3 deletions

View File

@ -16,6 +16,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.javafx>13.0.1</version.javafx>
</properties>
<build>
@ -85,17 +86,17 @@
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>12</version>
<version>${version.javafx}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-web</artifactId>
<version>12</version>
<version>${version.javafx}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-media</artifactId>
<version>12</version>
<version>${version.javafx}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>