Last note from my initial investigation. Previousl...
# dokka
z
Last note from my initial investigation. Previously in our root build file we configured a few other things, namely README and an output dir for the merged files
Copy code
tasks.dokkaHtmlMultiModule {
  outputDirectory.set(rootDir.resolve("docs/api/0.x"))
  includes.from(project.layout.projectDirectory.file("README.md"))
}
However, the migration docs don’t mention this. Is this no longer possible?
o
It's missing from migration guide only 😞 It's still possible to do it: in
dokka {}
in root project example:
Copy code
dokka {
    dokkaPublications.html {
        outputDirectory.set(rootDir.resolve("docs/api/0.x"))
        includes.from(project.layout.projectDirectory.file("README.md"))
    }
}
z
Ahh thank you!