Hey folks. I'm testing out a possible migration from dokkatoo to dokka 2.0, and I'm experiencing an issue with using the Dokka Gradle plugin, where my convention plugin is not recognizing a
DokkaExtension
despite applying
org.jetbrains.dokka
. Is there something I'm not doing correctly?
a
Adam Semenenko
09/30/2025, 6:31 AM
Hey 👋
I assume you're using v2.0.0. Does the project with the convention plugins have a
I think I found the issue - it turns out that Gradle properties does not propagate from a root build to its included builds in a composite build setup, so I have to add the property to each included build, rather than to the root build (which does not apply the dokka plugin).