From: Lars K.W. Gohlke Date: Tue, 25 Aug 2020 06:47:21 +0000 (+0200) Subject: set to jdk11 X-Git-Tag: v0.6.9~10 X-Git-Url: https://git.nmode.ca/signal-cli/commitdiff_plain/057168c421c79e0bffeecf2164d793d31e6185f2 set to jdk11 --- 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'