Skip to content
This repository has been archived by the owner on May 5, 2024. It is now read-only.

Commit

Permalink
Fix compatibility issue with Java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-pluskal committed Jun 3, 2019
1 parent 3306e81 commit 26d2923
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,11 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>8</source>
<target>8</target>
<!--
We use release 8 here to avoid incompatibility when compoiled on Java 9+
http://openjdk.java.net/jeps/247
-->
<release>8</release>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
Expand Down

0 comments on commit 26d2923

Please sign in to comment.