I'm trying to figure out the correct way to use do...
# dokka
d
I'm trying to figure out the correct way to use dokka in a gradle composite build. My main gradle project has no subprojects (only included builds) so the MultiProject tasks aren't added by default and I create them manually. However I am now stuck on trying to figure out the correct way to add the child/partial tasks to childDokkaTasks. Any help would be appreciated!
I found this issue but there is no clear resolution https://github.com/Kotlin/dokka/issues/1864
j
I'm curious, why use included builds instead of actual multi-module build?
d
I'm trying to build docs for multiple projects into one doc page, however each project has its own settings.gradle making it non trivial to use normal sub projects without significant modification. However I believe I have found a way to to make it work using subprojects so I will try that instead.