Skip to content

Commit

Permalink
chore: use Java 21 source and binary level
Browse files Browse the repository at this point in the history
  • Loading branch information
sverrehu committed Oct 16, 2023
1 parent b908a16 commit 989b0be
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<version>0.2.2-SNAPSHOT</version>

<properties>
<java.version>21</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kafka.version>3.6.0</kafka.version>
<!-- Must manage Jackson dependencies to avoid conflicts with Scala -->
Expand Down Expand Up @@ -99,8 +100,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>17</source>
<target>17</target>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
Expand Down

0 comments on commit 989b0be

Please sign in to comment.