From 057168c421c79e0bffeecf2164d793d31e6185f2 Mon Sep 17 00:00:00 2001 From: "Lars K.W. Gohlke" Date: Tue, 25 Aug 2020 08:47:21 +0200 Subject: [PATCH] set to jdk11 --- .github/workflows/ci.yml | 2 +- build.gradle | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6c1f00b0..a017816d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java: [ '1.8', '12.0.2' ] + java: [ '11', '12.0.2' ] steps: - uses: actions/checkout@v1 diff --git a/build.gradle b/build.gradle index 23e8b01d..b747db40 100644 --- a/build.gradle +++ b/build.gradle @@ -2,8 +2,8 @@ apply plugin: 'java' apply plugin: 'application' apply plugin: 'eclipse' -sourceCompatibility = JavaVersion.VERSION_1_8 -targetCompatibility = JavaVersion.VERSION_1_8 +sourceCompatibility = JavaVersion.VERSION_11 +targetCompatibility = JavaVersion.VERSION_11 mainClassName = 'org.asamk.signal.Main'