. Why do I also need to connect dokkas tasks? Otherwise I get this error message:
dokkaHtmlPartial uses this output of tasks myTask without declaring an explicit or implicit dependency
c
Chrimaeon
05/26/2023, 7:04 PM
That’s better asked in #gradle. Gradle 8.0 has this as an error because of incremental builds. with settings a sourceset from the outputs of a task you break the “dependency” chain.
Not sure if that will “fix” your issue. That’s dokka internal as far as I understood but you add your own task into a source set, right?
h
hfhbd
05/28/2023, 1:21 PM
It was a combination of two issues, my own generator task which was wrongly added to the kotlin SourceSet and now the Gradle problem when dokka multiModule task depends on another multiModule task.