Skip to content

Commit 941b074

Browse files
committed
Keeping the java 8 compliance level (compiled byte code is 8).
Still it works under 9, 10, 11 JREs
1 parent ac45053 commit 941b074

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@
3232
</license>
3333
</licenses>
3434
<properties>
35-
<jdk.version>9</jdk.version>
36-
<maven.enforcer.jdk-version>9</maven.enforcer.jdk-version>
35+
<!-- Notice: if using java 9 or 10 jres, it is possible to simply use here "8", "9" or "10". But if using java 8 jre, "8" is not an allowed value but only "1.8"-->
36+
<jdk.version>1.8</jdk.version>
37+
<maven.enforcer.jdk-version>1.8</maven.enforcer.jdk-version>
3738
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3839
<project.build.targetEncoding>UTF-8</project.build.targetEncoding>
3940
<!-- needed for failsafe plugin in integrationtest module - JD 2018-03-08 -->

0 commit comments

Comments
 (0)