Migrate -Xopt-in to -opt-in in Gradle Kotlin scripts

This commit is contained in:
Mikhail Glukhikh
2021-09-02 12:50:31 +03:00
committed by TeamCityServer
parent b8c3b34886
commit ed035d99ab
24 changed files with 44 additions and 44 deletions
+1 -1
View File
@@ -69,6 +69,6 @@ tasks {
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs += listOf("-Xopt-in=kotlin.RequiresOptIn")
freeCompilerArgs += listOf("-opt-in=kotlin.RequiresOptIn")
}
}