10 lines
No EOL
262 B
Kotlin
10 lines
No EOL
262 B
Kotlin
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
id("org.jetbrains.kotlin.jvm").version("1.6.21").apply(false)
|
|
}
|
|
|
|
tasks {
|
|
register<Delete>("clean"){
|
|
delete(rootProject.buildDir)
|
|
}
|
|
} |