I feel like I am probably doing something wrong, b...
# dokka
z
I feel like I am probably doing something wrong, but it seems like the
dokka
task created by the plugin requires jars to be assembled, however it does not actually seem to configure the gradle dependency graph correctly because if I run
dokka
after a
clean
I get errors about jars not being found for depended-on modules. I’m using dokka 0.10.0 with gradle 6.3 on a multi-module project. Is it expected to have to configure these dependencies manually?
c
Dokka does need the compile classpath of the sources it’s documenting so it’s able to properly provide types for functions and properties with inferred types. I would think the plugin should be configured to depend on the
assemble
tasks of all its dependent projects, so that might be a bug
z
Yea, if the task depends on jars I would expect the task to express that dependency to gradle. Seems like a bug to me, but almost nothing Gradle does is intuitive to me so I figured I might just be configuring things incorrectly.
Ok, looking at this error message again, I think it might be Jetifier that’s throwing a wrench into things.