7 sourceCompatibility = JavaVersion.VERSION_17
8 targetCompatibility = JavaVersion.VERSION_17
17 implementation("com.github.turasa", "signal-service-java", "2.15.3_unofficial_39")
18 implementation("com.fasterxml.jackson.core", "jackson-databind", "2.13.1")
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.32")
26 resolutionStrategy.failOnVersionConflict()
30 tasks.withType<AbstractArchiveTask>().configureEach {
31 isPreserveFileTimestamps = false
32 isReproducibleFileOrder = true
35 tasks.withType<JavaCompile> {
36 options.encoding = "UTF-8"
41 attributes("Automatic-Module-Name" to "org.asamk.signal.manager")