X-Git-Url: https://git.nmode.ca/signal-cli/blobdiff_plain/c72aeed8bba4d5ca873b36b4edb2b8eda9c24ec7..b78573021d3789e1a4d3ec0db83855409674fdc1:/lib/build.gradle.kts?ds=sidebyside diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index 5eb6c9b4..ae1d88a0 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -1,10 +1,11 @@ plugins { `java-library` + `check-lib-versions` } java { - sourceCompatibility = JavaVersion.VERSION_11 - targetCompatibility = JavaVersion.VERSION_11 + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 } repositories { @@ -13,10 +14,11 @@ repositories { } dependencies { - api("com.github.turasa:signal-service-java:2.15.3_unofficial_18") - implementation("com.google.protobuf:protobuf-javalite:3.10.0") - implementation("org.bouncycastle:bcprov-jdk15on:1.68") - implementation("org.slf4j:slf4j-api:1.7.30") + implementation("com.github.turasa:signal-service-java:2.15.3_unofficial_32") + api("com.fasterxml.jackson.core", "jackson-databind", "2.13.0") + implementation("com.google.protobuf:protobuf-javalite:3.11.4") + implementation("org.bouncycastle:bcprov-jdk15on:1.69") + implementation("org.slf4j:slf4j-api:1.7.32") } configurations { @@ -25,6 +27,11 @@ configurations { } } +tasks.withType().configureEach { + isPreserveFileTimestamps = false + isReproducibleFileOrder = true +} + tasks.withType { options.encoding = "UTF-8" }