Czar
11/27/2018, 10:30 AMtasks {
val compileKotlin: KotlinCompile by getting
}
I've found a workaround, but I don't like that it is more verbose. Is there a shorter alternative in 5.0?
tasks {
val compileKotlin by named<KotlinCompile>("compileKotlin")
}