Czar
11/27/2018, 10:54 AMnamed<GroovyCompile>("compileGroovy") {
dependsAndClasspath(named<KotlinCompile>("compileKotlin"))
}
named<GroovyCompile>("compileTestGroovy") {
dependsAndClasspath(named<KotlinCompile>("compileTestKotlin"))
}
fun GroovyCompile.dependsAndClasspath(compileKotlin: TaskProvider<KotlinCompile>) {
dependsOn(compileKotlin)
classpath += files(compileKotlin.get().destinationDir)
}