Nick
04/05/2023, 3:02 PMprotected
properties are not rendered, despite the use of documentedVisibilities.set(setOf(PUBLIC, PROTECTED))
. This simple class renders as follows:Ignat Beresnev
04/06/2023, 10:54 AMNick
04/07/2023, 2:52 PMIgnat Beresnev
04/07/2023, 2:53 PMdokkaHtml
or dokkaHtmlMultiModule
?Nick
04/07/2023, 5:12 PMIgnat Beresnev
04/07/2023, 5:13 PMtasks.dokkaHtml
to tasks.dokkaHtmlPartial
then 🙂Nick
04/07/2023, 7:08 PMtasks.dokkaHtmlPartial
is undefined. You can see i’m using 1.8.10. Also, I think the subprojects were actually creating partials. Here’s what the full output looks like https://nacular.github.io/doodle-api.Ignat Beresnev
04/07/2023, 8:34 PMtasks.dokkaHtmlPartial
needs to go into subproject {}
, not allprojects {}
, since the root project doesn't have a partial task
It's explained in the documentation: https://kotlinlang.org/docs/dokka-gradle.html#multi-project-configurationNick
04/08/2023, 12:09 AMtasks.dokkaHtmlPartial
as I said. However, tasks.withType<DokkaTaskPartial>
works! And protected properties seem to get populated correctly.
Not sure what’s wrong with my setup that prevents resolution of dokkaHtmlPartial
. Looks pretty much like the documentation.