mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-13 22:00:30 +05:30
26 lines
714 B
Plaintext
26 lines
714 B
Plaintext
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||
|
|
||
|
buildscript {
|
||
|
val kotlinVersion = "1.8.22"
|
||
|
repositories {
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath(libs.gradle)
|
||
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
|
||
|
classpath("org.jetbrains.kotlin:kotlin-serialization:$kotlinVersion")
|
||
|
|
||
|
// NOTE: Do not place your application dependencies here, they belong
|
||
|
// to the individual module build.gradle files
|
||
|
}
|
||
|
}
|
||
|
|
||
|
plugins {
|
||
|
id("com.google.devtools.ksp") version("1.9.0-1.0.12") apply false
|
||
|
}
|
||
|
|
||
|
tasks.register<Delete>("clean") {
|
||
|
delete(rootProject.buildDir)
|
||
|
}
|