is gradle associated ("friendly") source set support here yet with kotlin 1.3.61 and gradle 6.0.1? (e.g. to be able to use
internal
stuff in a custom
integrationTests
source-set in gradle)
Also is this still the correct way to do this? Seems very ugly, and not user-friendly at all.
Copy code
val compileKotlin by tasks
val compileIntegTestKotlin by tasks
KotlinCompile::class.java.getMethod("setFriendTaskName\$kotlin_gradle_plugin", String::class.java).run {
invoke(compileIntegTestKotlin, compileKotlin.name)
}