12 lines
224 B
Plaintext
12 lines
224 B
Plaintext
// [FILE] buildSrc/build.gradle.kts
|
|
// [PURPOSE] Build file for the buildSrc module, enabling access to Gradle APIs.
|
|
|
|
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
// [END_FILE_buildSrc/build.gradle.kts] |