is gradle associated ("friendly") source set suppo...
# gradle
c
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)
}
r
I don’t think it’s supported in the IDE, yet. This thread might help: https://kotlinlang.slack.com/archives/C0B8PUJGZ/p1569860253002500?thread_ts=1555962527.006200&cid=C0B8PUJGZ