Use stable compiler option for enabling progressive mode

This commit is contained in:
Ilya Gorbunov
2019-10-11 06:02:37 +03:00
parent 59482f6827
commit c1cb6da436
+1 -1
View File
@@ -333,7 +333,7 @@ allprojects {
"-Xuse-experimental=kotlin.Experimental",
"-Xread-deserialized-contracts",
"-Xjvm-default=compatibility",
"-Xprogressive".takeIf { hasProperty("test.progressive.mode") } // TODO: change to "-progressive" after bootstrap
"-progressive".takeIf { hasProperty("test.progressive.mode") }
)
tasks.withType<org.jetbrains.kotlin.gradle.dsl.KotlinCompile<*>> {