I’m developing a gradle plugin written in kotlin. I’m trying to package it in such a way that the consumers of the plugin need not to know about kotlin. To achieve this I’m assuming I’ll have to add kotlin runtime to the built jar, however
compileKotlin.kotlinOptions.includeRuntime = true
seems to do nothing. further more, dependencies of the plugin itself are not included either.