Is it possible to configure `KotlinCompile` tasks ...
# gradle
s
Is it possible to configure
KotlinCompile
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 resolve
Copy code
allprojects {
    gradle.projectsEvaluated {
        println tasks.findByPath("compileKotlin").class
        tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile.class) {
            println it
        }
    }
}