``` tasks.withType<DokkaTask>().forEach { ...
# dokka
x
Copy code
tasks.withType<DokkaTask>().forEach {
    it.outputFormat = "javadoc"
    it.outputDirectory = "$buildDir/javadoc"
    it.jdkVersion = 8
}
the real thing I was looking for is that I needed to hit the task and what the name of that was…