Skip to content

Commit

Permalink
build(Java): Upgrade to JDK 17
Browse files Browse the repository at this point in the history
  • Loading branch information
hirokiterashima committed May 9, 2024
1 parent 4fd7103 commit da4c9d9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM maven:3.8.4-openjdk-11
FROM maven:3.9.6-eclipse-temurin-17

WORKDIR /app

Expand Down
13 changes: 6 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.5</version>
<version>0.8.12</version>
<executions>
<execution>
<goals>
Expand All @@ -132,16 +132,16 @@
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
<version>3.3.2</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.13.0</version>
<executions>
<execution>
<id>default-testCompile</id>
Expand Down Expand Up @@ -182,8 +182,7 @@
</execution>
</executions>
<configuration>
<source>1.8</source>
<target>1.8</target>
<release>17</release>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -233,7 +232,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.3</version>
<version>3.4.0</version>
<configuration>
<archive>
<manifest>
Expand Down

0 comments on commit da4c9d9

Please sign in to comment.