Skip to content

Commit

Permalink
Specify a modern compiler plugin version
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnicJelle committed Jul 21, 2024
1 parent 713d926 commit 2eebf17
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<version>4.2</version>

<properties>
<maven.compiler.release>16</maven.compiler.release>
<java.version>16</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand All @@ -22,6 +22,14 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<release>${java.version}</release>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
Expand Down

0 comments on commit 2eebf17

Please sign in to comment.