<@U0AAQKT9Q> there is a kotlin compile task option...
# announcements
s
@ilya.gorbunov there is a kotlin compile task option called
includeRuntime
.. i thought it was for including the runtime into the compiled artifact (like shade plugin)
Copy code
tasks.withType<KotlinCompile> {
    kotlinOptions {
        jvmTarget = javaVersion.toString()
        includeRuntime = true
    }
}