7 sourceCompatibility = JavaVersion.VERSION_17
8 targetCompatibility = JavaVersion.VERSION_17
17 implementation("com.github.turasa", "signal-service-java", "2.15.3_unofficial_50")
18 implementation("com.fasterxml.jackson.core", "jackson-databind", "2.13.3")
19 implementation("com.google.protobuf", "protobuf-javalite", "3.11.4")
20 implementation("org.bouncycastle", "bcprov-jdk15on", "1.70")
21 implementation("org.slf4j", "slf4j-api", "1.7.36")
22 implementation("org.xerial", "sqlite-jdbc", "3.36.0.3")
23 implementation("com.zaxxer", "HikariCP", "5.0.1")
28 resolutionStrategy.failOnVersionConflict()
32 tasks.withType<AbstractArchiveTask>().configureEach {
33 isPreserveFileTimestamps = false
34 isReproducibleFileOrder = true
37 tasks.withType<JavaCompile> {
38 options.encoding = "UTF-8"
43 attributes("Automatic-Module-Name" to "org.asamk.signal.manager")