Skip to content

Commit 1f51991

Browse files
author
Armin Schrenk
committed
updating java to version 11 and non-core dependencies
1 parent 333c6ba commit 1f51991

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This project is in an early stage and not ready for production use. We recommend
1313

1414
Download the jar file via [GitHub Releases](https://github.com/cryptomator/cli/releases).
1515

16-
Cryptomator CLI depends on Java 8. In addition, the JCE unlimited strength policy files must be installed (needed for 256-bit keys).
16+
Cryptomator CLI requires that at least JDK 11 is present on your system.
1717

1818
```sh
1919
java -jar cryptomator-cli-x.y.z.jar \

pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<url>https://github.com/cryptomator/cli</url>
99

1010
<properties>
11-
<commons.cli.version>1.3.1</commons.cli.version>
12-
<logback.version>1.2.2</logback.version>
1311
<cryptofs.version>1.9.10</cryptofs.version>
1412
<webdav-nio.version>1.0.11</webdav-nio.version>
13+
<commons.cli.version>1.4</commons.cli.version>
14+
<logback.version>1.2.3</logback.version>
1515

16-
<java.version>1.8</java.version>
16+
<java.version>11</java.version>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1818
</properties>
1919

@@ -71,17 +71,18 @@
7171
<plugins>
7272
<plugin>
7373
<artifactId>maven-compiler-plugin</artifactId>
74-
<version>3.6.1</version>
74+
<version>3.8.1</version>
7575
<configuration>
7676
<source>${java.version}</source>
7777
<target>${java.version}</target>
78+
<release>${java.version}</release>
7879
<showWarnings>true</showWarnings>
7980
</configuration>
8081
</plugin>
8182

8283
<plugin>
8384
<artifactId>maven-assembly-plugin</artifactId>
84-
<version>3.0.0</version>
85+
<version>3.3.0</version>
8586
<executions>
8687
<execution>
8788
<id>make-assembly</id>

0 commit comments

Comments
 (0)