Open mahozad opened 4 weeks ago
Hey! Yeah, that's because Gradle Plugin v2 uses a bit different way of running Dokka generator/engine by default. We are thinking of changing it. In the meanwhile, you can do that explicitly:
dokka {
dokkaGeneratorIsolation = ClassLoaderIsolation()
}
For more information on what it does, you can take a look on updated extensive KDoc.
Thank you. that resolved the problem.
Gradle version should also be above 8.10
@whyoleg should this be added to the subprojects (the convention plugin), or the root project, or both, if I have a multi-module build?
@whyoleg should this be added to the subprojects (the convention plugin), or the root project, or both, if I have a multi-module build?
You can take a look at my project, maybe it can help you https://github.com/SakurajimaMaii/Android-Vast-Extension/tree/preview/kotlin-2.0.0/libraries
@SakurajimaMaii OK thanks.
Describe the bug When upgrading Dokka from 1.9.20 to 2.0.0-Beta, executing
dokkaGenerate
task fails:Expected behaviour Should generate HTML output.
To Reproduce Please checkout this commit and apply the below dokka configs in
library/build.gradle.kts
and run./gradlew wavy-slider:dokkaGenerate
Dokka configuration gradle.properties:
library/build.gradle.kts:
Installation
Additional context Dokka 1.9.20 worked properly.