<@U282LGMGR>, did you try the `KotlinCompile` task...
# gradle
x
@redrield, did you try the
KotlinCompile
task? Something like:
Copy code
tasks.withType<KotlinCompile> {
  val javaVersion = "1.8"
  sourceCompatibility = javaVersion
  targetCompatibility = javaVersion
  kotlinOptions {
    //apiVersion = "1.1"
    jvmTarget = javaVersion
    //languageVersion = "1.1"
  }
}