I need to turn off kotlin incremental compilation ...
# announcements
d
I need to turn off kotlin incremental compilation on CI server, and can't figure out how to do it. Official doc says to put
-Pkotlin.incremenal=false
in
local.properties
or
gradle.properties
, but that would change local builds too. * Tried putting it to GRADLE_OPTS => got
unrecognized option error
* Tried using ORG_GRADLE_PROJECT_kotlin_incremental=false (as suggested in gradle guide) => no effect Any further advice?