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:
committed by
Space Team
parent
e76cf24d01
commit
336ea28735
@@ -52,12 +52,6 @@ allprojects {
|
|||||||
optInToExperimentalCompilerApi()
|
optInToExperimentalCompilerApi()
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile> {
|
|
||||||
compilerOptions {
|
|
||||||
progressiveMode.set(true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
testsJar {}
|
testsJar {}
|
||||||
|
|
||||||
projectTest {
|
projectTest {
|
||||||
|
|||||||
@@ -36,12 +36,6 @@ allprojects {
|
|||||||
optInToExperimentalCompilerApi()
|
optInToExperimentalCompilerApi()
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile> {
|
|
||||||
compilerOptions {
|
|
||||||
progressiveMode.set(true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
testsJar {}
|
testsJar {}
|
||||||
|
|
||||||
projectTest {
|
projectTest {
|
||||||
|
|||||||
Reference in New Issue
Block a user