I\'m compiling a Kotlin library jar with Gradle using the Kotlin gradle plugin:
apply plugin: \'kotlin\'
I\'m trying to find a way to pass a sim
If anyone is using the kotlin DSL you can try this too:
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile val compileKotlin: KotlinCompile by tasks compileKotlin.kotlinOptions.includeRuntime = true