man85

Results 7 comments of man85

> **Workaround** Run `./gradlew :dokkaHtmlMultiModule` (with a colon) instead of `./gradlew dokkaHtmlMultiModule`. It will run the `:dokkaHtmlMultiModule` task of the only root project. See [Gradle: executing tasks by fully qualified...

> Should not be an issue in [Dokka 2.0.0](https://github.com/Kotlin/dokka/releases/tag/v2.0.0) in [Dokka Gradle plugin v2](https://kotlinlang.org/docs/dokka-migration.html) with reworked [aggregation setup](https://kotlinlang.org/docs/dokka-migration.html#update-documentation-aggregation-in-multi-module-projects) [Same](https://github.com/Kotlin/dokka/issues/4131) problem in V2

Why `EnumCodec` can't load OID lazyly? When I created codecs for user-defined types I did this trick

> You would need to run your migration scripts first and then obtain a new connection that is associated with the `EnumCodec`. There is no control over all connections that...

I made dependencies between tasks like this: ```project-2.build.kts tasks.named("dokkaGeneratePublicationHtml") { dependsOn(project(":project-1").tasks.named("dokkaGeneratePublicationHtml")) } ``` but ran into circular dependencies issue

I added a lot of ``` tasks.named("dokkaGenerateModuleHtml") { dependsOn(project(":another-subproject").tasks.named("dokkaGeneratePublicationHtml")) ... } tasks.named("dokkaGeneratePublicationHtml") { dependsOn(project(":another-subproject").tasks.named("dokkaGeneratePublicationHtml")) ... } ``` into `build.gradle.kts` and after that I got compilation errors (unresolved) But project can...