summaryrefslogtreecommitdiff
path: root/buildSrc/build.gradle.kts
blob: 6f476b8598831073d79a9cee7cc3c43a721650b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
plugins {
    // The Kotlin DSL plugin provides a convenient way to develop convention plugins.
    // Convention plugins are located in `src/main/kotlin`, with the file extension `.gradle.kts`,
    // and are applied in the project's `build.gradle.kts` files as required.
    `kotlin-dsl`
}

kotlin {
    jvmToolchain(21)
}

dependencies {
    // Add a dependency on the Kotlin Gradle plugin, so that convention plugins can apply it.
    implementation(libs.kotlinGradlePlugin)
}