This is basically a location where we can put common utils that can also be imported by libsignal-service (which is java-only, no android dependency).
21 lines
383 B
Kotlin
21 lines
383 B
Kotlin
/*
|
|
* Copyright 2023 Signal Messenger, LLC
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
val signalJavaVersion: JavaVersion by rootProject.extra
|
|
|
|
plugins {
|
|
id("java-library")
|
|
id("org.jetbrains.kotlin.jvm")
|
|
id("ktlint")
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = signalJavaVersion
|
|
targetCompatibility = signalJavaVersion
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(testLibs.junit.junit)
|
|
}
|