Robert Jaros
12/28/2024, 6:13 PMdependencies {}
to aggregate documentation from the sub-projects but I also want to see the documentation for my root project. It doesn't seem to work by default. More in 🧵Robert Jaros
12/28/2024, 6:16 PMdependencies {
dokka(rootProject)
dokka(project(":subproject1"))
dokka(project(":subproject2"))
...
}
and it almost works, but the index for the root project docs shows list of subprojects instead of packages. Can I somehow fix it? Is there a better solution?Robert Jaros
12/28/2024, 6:18 PMAdam Semenenko
01/13/2025, 10:48 AMRobert Jaros
01/13/2025, 10:59 AMRobert Jaros
01/13/2025, 11:02 AMRobert Jaros
01/13/2025, 11:04 AMRobert Jaros
01/13/2025, 11:05 AMRobert Jaros
01/13/2025, 11:05 AMRobert Jaros
01/13/2025, 11:13 AMAdam Semenenko
01/13/2025, 11:17 AM:docs
subproject, and I get 404s when I try looking in the root project code, and I can see in the URL I see a double slash //
so I think the name isn't being set correctly.
<http://localhost:63342/dokka/examples/gradle-v2/multimodule-example/build/dokka//index.html>
Adam Semenenko
01/13/2025, 11:18 AMdokka {
modulePath = "root"
}
Robert Jaros
01/13/2025, 11:25 AMRobert Jaros
01/13/2025, 11:26 AMRobert Jaros
01/13/2025, 11:27 AMAdam Semenenko
01/13/2025, 11:27 AMAdam Semenenko
01/13/2025, 11:27 AMmodulePath = "kvision"
would workRobert Jaros
01/13/2025, 11:28 AMAdam Semenenko
01/13/2025, 11:28 AMAdam Semenenko
01/13/2025, 11:39 AMAdam Semenenko
01/13/2025, 11:41 AMhtml
dir is missing
Expected:
<http://localhost:63342/dokka/examples/gradle-v2/multimodule-example/build/dokka/html/[root]/index.html>
Actual:
<http://localhost:63342/dokka/examples/gradle-v2/multimodule-example/build/dokka//index.html>