Strum355
10/18/2021, 11:43 AMKotlinCompile
tasks in init scripts? Im trying to do tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile(.class)?)
(with and without .class) but the fqn never seems to resolveStrum355
10/18/2021, 11:45 AMallprojects {
gradle.projectsEvaluated {
println tasks.findByPath("compileKotlin").class
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile.class) {
println it
}
}
}