Skip to content

Commit

Permalink
chore: remove JDK 8 compatability
Browse files Browse the repository at this point in the history
This was necessary as the sonar plugin doesn't support JDK 8 anymore.
  • Loading branch information
joshka committed Mar 5, 2024
1 parent 612cc1b commit a223065
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java-version: [8, 11, 17, 21]
java-version: [11, 17, 21]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ test {
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
withJavadocJar()
withSourcesJar()
}
Expand Down

0 comments on commit a223065

Please sign in to comment.