20 lines
312 B
Plaintext
20 lines
312 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.plugin.shadow)
|
|
implementation(libs.build.indra.common)
|
|
implementation(libs.build.indra.spotless)
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(16))
|
|
}
|
|
}
|