Zac Sweers
10/08/2024, 1:34 AMtasks.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?Oleg Yukhnevich
10/08/2024, 10:29 AMdokka {}
in root project
example:
dokka {
dokkaPublications.html {
outputDirectory.set(rootDir.resolve("docs/api/0.x"))
includes.from(project.layout.projectDirectory.file("README.md"))
}
}
Zac Sweers
10/08/2024, 1:46 PM