Skip to content

Commit

Permalink
Switch to Java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
schmika committed Dec 7, 2023
1 parent f2e5a41 commit 21153f7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 17]
java: [17]
steps:
- uses: actions/checkout@v3
- name: Set up JDK
Expand All @@ -34,12 +34,12 @@ jobs:
needs: build
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
check-latest: true
distribution: temurin
java-version: 11
java-version: 17
server-id: ossrh-snapshots
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@

<properties>
<javadoc.basepath>pathfinder</javadoc.basepath>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<version.assertj-core>3.24.2</version.assertj-core>
Expand Down

0 comments on commit 21153f7

Please sign in to comment.