Skip to content

Commit

Permalink
Add --release to javac, so we need java 11+ to build jetcache
Browse files Browse the repository at this point in the history
  • Loading branch information
areyouok committed Aug 5, 2022
1 parent dcd20f4 commit f2d5e8f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,9 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>8</source>
<target>8</target>
<release>8</release>
<compilerArgument>-parameters</compilerArgument>
</configuration>
</plugin>
Expand Down Expand Up @@ -284,6 +285,7 @@
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>2.9.3</version>
<!--3.0+ need java 11-->
</dependency>

<dependency>
Expand Down

0 comments on commit f2d5e8f

Please sign in to comment.