mirror of
https://github.com/bbernhard/signal-cli-rest-api.git
synced 2026-07-07 21:41:47 +00:00
24 lines
666 B
Diff
24 lines
666 B
Diff
diff --git a/build.gradle.kts b/build.gradle.kts
|
|
index 5d127e4c..7ca155f9 100644
|
|
--- a/build.gradle.kts
|
|
+++ b/build.gradle.kts
|
|
@@ -91,6 +91,7 @@ dependencies {
|
|
implementation(libs.logback)
|
|
implementation(libs.zxing)
|
|
implementation(project(":libsignal-cli"))
|
|
+ implementation(files("/tmp/libsignal-client.jar"))
|
|
|
|
testImplementation(libs.junit.jupiter)
|
|
testImplementation(platform(libs.junit.jupiter.bom))
|
|
@@ -107,6 +108,10 @@ configurations {
|
|
}
|
|
}
|
|
|
|
+configurations.all {
|
|
+ exclude(group = "org.signal", module = "libsignal-client")
|
|
+}
|
|
+
|
|
|
|
tasks.withType<AbstractArchiveTask>().configureEach {
|
|
isPreserveFileTimestamps = false
|