I'm trying out 1.1 beta2. I'm developing an IDEA p...
# eap
i
I'm trying out 1.1 beta2. I'm developing an IDEA plugin and so the library with all IDEA classes has an 1.0 version of Kotlin in it. This is now an error when compiling unless I pass
-Xskip-runtime-version-check
to the compiler. In gradle I can write
compileKotlin.kotlinOptions.freeCompilerArgs = ['-Xskip-runtime-version-check']
and it works, but the gradle project import does not pick up this argument. I can manually add it to the Kotlin facet but it is gone after each new project import. Is there a way to get persistent command line options for the compiler?