From: AsamK Date: Sun, 5 Dec 2021 13:41:13 +0000 (+0100) Subject: Remove jackson from lib's api X-Git-Tag: v0.10.0~23 X-Git-Url: https://git.nmode.ca/signal-cli/commitdiff_plain/16bf7af297910f8c7bc5bea3e28c8d0479c95f0c Remove jackson from lib's api --- diff --git a/build.gradle.kts b/build.gradle.kts index f5d5150a..c9521e72 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -36,10 +36,11 @@ repositories { } dependencies { - implementation("org.bouncycastle:bcprov-jdk15on:1.69") - implementation("net.sourceforge.argparse4j:argparse4j:0.9.0") - implementation("com.github.hypfvieh:dbus-java-transport-native-unixsocket:4.0.0-beta") - implementation("org.slf4j:slf4j-simple:1.7.32") + implementation("org.bouncycastle", "bcprov-jdk15on", "1.69") + implementation("com.fasterxml.jackson.core", "jackson-databind", "2.13.0") + implementation("net.sourceforge.argparse4j", "argparse4j", "0.9.0") + implementation("com.github.hypfvieh", "dbus-java-transport-native-unixsocket", "4.0.0-beta") + implementation("org.slf4j", "slf4j-simple", "1.7.32") implementation("org.slf4j", "jul-to-slf4j", "1.7.32") implementation(project(":lib")) } diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index 8e278ef4..d3007f2a 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -14,11 +14,11 @@ repositories { } dependencies { - implementation("com.github.turasa:signal-service-java:2.15.3_unofficial_34") - 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") + implementation("com.github.turasa", "signal-service-java", "2.15.3_unofficial_34") + implementation("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 {