Skip to content

Commit

Permalink
Drop java 8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
kallestenflo committed Jan 18, 2024
1 parent 82ce462 commit 27ea948
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11, 17, 18] # todo: update to latest Gradle version for Java 21 support
java: [11, 17, 18] # todo: update to latest Gradle version for Java 21 support
fail-fast: false
max-parallel: 4
name: JDK ${{ matrix.java }}
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -65,8 +65,8 @@ subprojects {
apply plugin: 'biz.aQute.bnd.builder'

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

repositories {
Expand Down

0 comments on commit 27ea948

Please sign in to comment.