Skip to content

Commit

Permalink
update to java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
monperrus committed Jan 21, 2024
1 parent ac6cb99 commit 1cfda30
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
<name>coming-parent</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk.version>1.8</jdk.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<github.global.server>github</github.global.server>
</properties>

Expand Down Expand Up @@ -205,10 +202,11 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<version>3.8.1</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<!-- as of Jan 2024, we use Java 17 -->
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 1cfda30

Please sign in to comment.