mirror of
https://github.com/apple/pkl.git
synced 2026-03-24 18:11:27 +01:00
18 lines
357 B
Kotlin
18 lines
357 B
Kotlin
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.downloadTaskPlugin)
|
|
implementation(libs.spotlessPlugin)
|
|
implementation(libs.kotlinPlugin) {
|
|
exclude(module = "kotlin-android-extensions")
|
|
}
|
|
implementation(libs.shadowPlugin)
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|