Drop setting progressive mode in cli / cli-base (related to KT-59171)

This commit prevents language version increase due to bootstrapping
problems. Compiler version X attempts to build the project with the
current version X+1 -> warning about progressive mode cannot be enabled ->
error due to -Werror -> build failure.
This commit is contained in:
Mikhail Glukhikh
2023-07-26 17:30:12 +02:00
committed by Space Team
parent e76cf24d01
commit 336ea28735
2 changed files with 0 additions and 12 deletions
-6
View File
@@ -36,12 +36,6 @@ allprojects {
optInToExperimentalCompilerApi()
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile> {
compilerOptions {
progressiveMode.set(true)
}
}
testsJar {}
projectTest {