Browse Source

Drop java 8 support

pull/986/head
kalle 5 months ago
parent
commit
27ea948f88
  1. 2
      .github/workflows/ci.yml
  2. 4
      build.gradle

2
.github/workflows/ci.yml

@ -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 }}

4
build.gradle

@ -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 {

Loading…
Cancel
Save