Skip to content

Commit

Permalink
Java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
testower committed Feb 15, 2023
1 parent 0effe72 commit 2d916bd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ aliases:
jobs:
test:
docker:
- image: cimg/openjdk:17.0.6
- image: cimg/openjdk:17.0.6
auth:
username: $DOCKERHUB_LOGIN
password: $DOCKERHUB_PASSWORD
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
- .circleci
build:
docker:
- image: cimg/openjdk:11.0
- image: cimg/openjdk:17.0.6
auth:
username: $DOCKERHUB_LOGIN
password: $DOCKERHUB_PASSWORD
Expand Down
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,14 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 2d916bd

Please sign in to comment.