mirror of
https://github.com/bbernhard/signal-cli-rest-api.git
synced 2026-07-06 21:31:19 +00:00
24 lines
678 B
Diff
24 lines
678 B
Diff
diff --git a/build.gradle.kts b/build.gradle.kts
|
|
index 64e29294..5d0e53cc 100644
|
|
--- a/build.gradle.kts
|
|
+++ b/build.gradle.kts
|
|
@@ -104,6 +104,7 @@ dependencies {
|
|
implementation(libs.micronaut.json.schema.generator)
|
|
}
|
|
implementation(project(":libsignal-cli"))
|
|
+ implementation(files("/tmp/libsignal-client.jar"))
|
|
|
|
testImplementation(libs.junit.jupiter)
|
|
testImplementation(platform(libs.junit.jupiter.bom))
|
|
@@ -120,6 +121,10 @@ configurations {
|
|
}
|
|
}
|
|
|
|
+configurations.all {
|
|
+ exclude(group = "org.signal", module = "libsignal-client")
|
|
+}
|
|
+
|
|
|
|
tasks.withType<AbstractArchiveTask>().configureEach {
|
|
isPreserveFileTimestamps = false
|