mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-15 07:28:30 +00:00
34 lines
879 B
Kotlin
34 lines
879 B
Kotlin
plugins {
|
|
alias(libs.plugins.jetbrains.kotlin.jvm)
|
|
id("java-library")
|
|
alias(libs.plugins.ktlint)
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.toVersion(libs.versions.javaVersion.get())
|
|
targetCompatibility = JavaVersion.toVersion(libs.versions.javaVersion.get())
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain {
|
|
languageVersion = JavaLanguageVersion.of(libs.versions.kotlinJvmTarget.get())
|
|
}
|
|
}
|
|
|
|
// NOTE: For now, in order to run ktlint on this project, you have to manually run ./gradlew :build-logic:tools:ktlintFormat
|
|
// Gotta figure out how to get it auto-included in the normal ./gradlew ktlintFormat
|
|
ktlint {
|
|
version.set("1.5.0")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(gradleApi())
|
|
|
|
implementation(libs.dnsjava)
|
|
api(libs.square.okhttp3)
|
|
|
|
testImplementation(testLibs.junit.junit)
|
|
testImplementation(testLibs.mockk)
|
|
testImplementation(testLibs.square.mockwebserver)
|
|
}
|