]> nmode's Git Repositories - signal-cli/blobdiff - lib/build.gradle.kts
Implement listStickerPacks command
[signal-cli] / lib / build.gradle.kts
index 91726ae15e257027e0650b6493c905dd4d1041cf..c768445b9ebfe6b02c8b08fc39993e706f45ffad 100644 (file)
@@ -14,11 +14,11 @@ repositories {
 }
 
 dependencies {
-    implementation("com.github.turasa:signal-service-java:2.15.3_unofficial_31")
-    api("com.fasterxml.jackson.core", "jackson-databind", "2.13.0")
-    implementation("com.google.protobuf:protobuf-javalite:3.10.0")
-    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_38")
+    implementation("com.fasterxml.jackson.core", "jackson-databind", "2.13.1")
+    implementation("com.google.protobuf", "protobuf-javalite", "3.11.4")
+    implementation("org.bouncycastle", "bcprov-jdk15on", "1.70")
+    implementation("org.slf4j", "slf4j-api", "1.7.32")
 }
 
 configurations {
@@ -35,3 +35,9 @@ tasks.withType<AbstractArchiveTask>().configureEach {
 tasks.withType<JavaCompile> {
     options.encoding = "UTF-8"
 }
+
+tasks.jar {
+    manifest {
+        attributes("Automatic-Module-Name" to "org.asamk.signal.manager")
+    }
+}