]> nmode's Git Repositories - signal-cli/commitdiff
set to jdk11
authorLars K.W. Gohlke <lkwg82@gmx.de>
Tue, 25 Aug 2020 06:47:21 +0000 (08:47 +0200)
committerAsamK <asamk@gmx.de>
Thu, 27 Aug 2020 16:06:09 +0000 (18:06 +0200)
.github/workflows/ci.yml
build.gradle

index 6c1f00b0446ffcd948a9f2e095e9939b8a0636aa..a017816db3609753f875faada5df62b5aa6ad6f9 100644 (file)
@@ -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
index 23e8b01d7a87ba9467e669f8f24fdd8d1e464327..b747db4087794d4bfbc24be6581caae2e9a684fd 100644 (file)
@@ -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'