Hi, I’m trying to upgrade to the newest dokka plugin from 0.10.1 and in both single and multi-module modes the plugin always says
Exiting Generation: Nothing to document
. I’m obviously missing something but it’s unclear to me what it is. I’m not using any kind of unusual source code layout. It’s a multi-module project with each module having code in
src/main/kotlin
. I’ve tried the single module mode (customizing
tasks.withType<DokkaTask>()
and running
./gradlew dokkaHtml
) and multi-module mode (customizing
tasks.withType<DokkaTaskPartial>()
and running
./gradlew dokkaHtmlMultiModule
) but get the same result either way. Ideally I want to eventually be able to generate -javadoc.jar files, and probably use the Jekyll support to generate an all-in-one page to push to the project’s website, but I’m stuck with getting the plugin to find the code at all.
https://github.com/robfletcher/strikt/