Hello,
When trying to update my project which uses dataframe to kotlin 2.3.0 and 2.3.10, I encountered a FileAnalysisException from the dataframe compiler plugin.
I found those related issues talking about K2 incompatibility: #1650 & #1445.
I tried setting the kotlin.reflect.jvm.useK1Implementation system property using the following but it didn't work:
tasks {
compileKotlin {
dependsOn(generateOpenAPICode, generateKongBack)
kotlinDaemonJvmArguments.add("-Dkotlin.reflect.jvm.useK1Implementation=true")
}
}
Could you help me on how to disable K2 in my project to dataframe compiler project doesn't crash?
Hello,
When trying to update my project which uses dataframe to kotlin
2.3.0and2.3.10, I encountered aFileAnalysisExceptionfrom the dataframe compiler plugin.I found those related issues talking about K2 incompatibility: #1650 & #1445.
I tried setting the
kotlin.reflect.jvm.useK1Implementationsystem property using the following but it didn't work:tasks { compileKotlin { dependsOn(generateOpenAPICode, generateKongBack) kotlinDaemonJvmArguments.add("-Dkotlin.reflect.jvm.useK1Implementation=true") } }Could you help me on how to disable K2 in my project to dataframe compiler project doesn't crash?