mirror of
https://github.com/tursom/TursomServer.git
synced 2025-03-23 08:00:06 +08:00
15 lines
324 B
Plaintext
15 lines
324 B
Plaintext
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("ts-gradle-repos") {
|
|
id = "ts-gradle-repos"
|
|
implementationClass = "cn.tursom.gradle.ReposPlugin"
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.withType<KotlinCompile>().configureEach {
|
|
kotlinOptions.freeCompilerArgs += "-Xcontext-receivers"
|
|
}
|