7 sourceCompatibility = JavaVersion.VERSION_17
8 targetCompatibility = JavaVersion.VERSION_17
17 implementation("com.github.turasa", "signal-service-java", "2.15.3_unofficial_66")
18 implementation("com.fasterxml.jackson.core", "jackson-databind", "2.14.1")
19 implementation("com.google.protobuf", "protobuf-javalite", "3.21.12")
20 implementation("org.bouncycastle", "bcprov-jdk15on", "1.70")
21 implementation("org.slf4j", "slf4j-api", "2.0.6")
22 implementation("org.xerial", "sqlite-jdbc", "3.40.1.0")
23 implementation("com.zaxxer", "HikariCP", "5.0.1")
25 testImplementation("org.junit.jupiter", "junit-jupiter", "5.9.2")
28 tasks.named<Test>("test") {
34 resolutionStrategy.failOnVersionConflict()
38 tasks.withType<AbstractArchiveTask>().configureEach {
39 isPreserveFileTimestamps = false
40 isReproducibleFileOrder = true
43 tasks.withType<JavaCompile> {
44 options.encoding = "UTF-8"
49 attributes("Automatic-Module-Name" to "org.asamk.signal.manager")