Hey folks. I'm testing out a possible migration fr...
# dokka
k
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
Hey 👋 I assume you're using v2.0.0. Does the project with the convention plugins have a
gradle.properties
file, and does that file have
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
?
k
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).