X-Git-Url: https://git.nmode.ca/signal-cli/blobdiff_plain/cf1cd60b9ffcab8d9e95edb82e35c127c439a495..5a2c4b8dfdbda71d6932998c48c9ffa633bb227c:/build.gradle diff --git a/build.gradle b/build.gradle index 6fb89015..a6805093 100644 --- a/build.gradle +++ b/build.gradle @@ -2,12 +2,12 @@ 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' -version = '0.6.8' +version = '0.7.2' compileJava.options.encoding = 'UTF-8' @@ -17,11 +17,11 @@ repositories { } dependencies { - implementation 'com.github.turasa:signal-service-java:2.15.3_unofficial_10' - implementation 'org.bouncycastle:bcprov-jdk15on:1.65' + implementation 'com.github.turasa:signal-service-java:2.15.3_unofficial_16' + implementation 'org.bouncycastle:bcprov-jdk15on:1.68' implementation 'net.sourceforge.argparse4j:argparse4j:0.8.1' - implementation 'com.github.hypfvieh:dbus-java:3.2.1' - implementation 'org.slf4j:slf4j-nop:1.7.30' + implementation 'com.github.hypfvieh:dbus-java:3.2.4' + implementation 'org.slf4j:slf4j-simple:1.7.30' } jar {