Czar
12/14/2019, 3:26 PMinternal
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.
val compileKotlin by tasks
val compileIntegTestKotlin by tasks
KotlinCompile::class.java.getMethod("setFriendTaskName\$kotlin_gradle_plugin", String::class.java).run {
invoke(compileIntegTestKotlin, compileKotlin.name)
}
ralf
12/14/2019, 7:34 PM