Kapt: enable JVM IR by default

Add `kapt.use.jvm.ir=false` to `gradle.properties` to return the old
behavior.

 #KT-53135 Fixed
This commit is contained in:
Alexander Udalov
2023-01-16 23:46:21 +01:00
committed by Space Team
parent 9e1b6dc223
commit a7b1bade85
@@ -206,7 +206,7 @@ class Kapt3GradleSubplugin @Inject internal constructor(private val registry: To
KAPT_INFO_AS_WARNINGS("kapt.info.as.warnings", false),
KAPT_INCLUDE_COMPILE_CLASSPATH("kapt.include.compile.classpath", true),
KAPT_KEEP_KDOC_COMMENTS_IN_STUBS("kapt.keep.kdoc.comments.in.stubs", true),
KAPT_USE_JVM_IR("kapt.use.jvm.ir", false),
KAPT_USE_JVM_IR("kapt.use.jvm.ir", true),
}
}