Skip to content

Commit

Permalink
Merge pull request #4859 from rvullriede/fix/jdk-21-support
Browse files Browse the repository at this point in the history
Enable Compilation on JDK21
  • Loading branch information
timmolter authored Apr 29, 2024
2 parents 0ed901f + 668f1ec commit 5238eab
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<version.java>1.8</version.java>
<version.java>8</version.java>
<version.assertj>3.25.3</version.assertj>
<version.commons.lang3>3.14.0</version.commons.lang3>
<version.fasterxml>2.14.3</version.fasterxml>
Expand Down Expand Up @@ -501,10 +501,9 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<version>3.13.0</version>
<configuration>
<source>${version.java}</source>
<target>${version.java}</target>
<release>${version.java}</release>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
</configuration>
Expand Down

0 comments on commit 5238eab

Please sign in to comment.