18 lines
326 B
Plaintext
18 lines
326 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.plugin.shadow)
|
|
implementation(libs.build.indra.common)
|
|
implementation(libs.build.indra.spotless)
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
} |