mirror of
https://github.com/PhilKes/NotallyX.git
synced 2025-06-28 12:19:55 +00:00
20 lines
No EOL
460 B
Kotlin
20 lines
No EOL
460 B
Kotlin
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:8.7.3")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.0")
|
|
classpath("org.apache.commons:commons-configuration2:2.4")
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.google.devtools.ksp") version "1.9.0-1.0.13" apply false
|
|
}
|
|
|
|
tasks.register<Delete>("clean") {
|
|
delete(layout.buildDirectory.asFile)
|
|
} |