openjdk 11 migration

This commit is contained in:
Armin Schrenk
2018-10-31 15:50:05 +01:00
parent 050a6e6a57
commit 54f2667e45
3 changed files with 33 additions and 3 deletions

View File

@@ -11,6 +11,12 @@
<description>Shared utilities</description>
<dependencies>
<!-- JavaFx -->
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
</dependency>
<!-- Libs -->
<dependency>
<groupId>com.google.guava</groupId>

View File

@@ -31,6 +31,8 @@
<cryptomator.dokany.version>1.0.0</cryptomator.dokany.version>
<cryptomator.webdav.version>1.0.5</cryptomator.webdav.version>
<javafx.version>11</javafx.version>
<commons-io.version>2.5</commons-io.version>
<commons-lang3.version>3.6</commons-lang3.version>
@@ -122,6 +124,18 @@
<version>${cryptomator.jni.version}</version>
</dependency>
<!-- JavaFX -->
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>${javafx.version}</version>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
@@ -317,9 +331,9 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>10</source>
<target>10</target>
<release>10</release>
<source>11</source>
<target>11</target>
<release>11</release>
<annotationProcessorPaths>
<path>
<groupId>com.google.dagger</groupId>

View File

@@ -46,6 +46,16 @@
<artifactId>cryptolib</artifactId>
</dependency>
<!-- JavaFx -->
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
</dependency>
<!-- EasyBind -->
<dependency>
<groupId>org.fxmisc.easybind</groupId>