From f303d407f50c1eb58cd8e30ba6a411942c5bf2cf Mon Sep 17 00:00:00 2001 From: Benoit Lubek Date: Tue, 11 Jul 2023 11:44:21 +0200 Subject: [PATCH] Fix another configuration cache issue with Dokka (#5087) --- build-logic/src/main/kotlin/Publishing.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/build-logic/src/main/kotlin/Publishing.kt b/build-logic/src/main/kotlin/Publishing.kt index a6412f8d62b..80074772e11 100644 --- a/build-logic/src/main/kotlin/Publishing.kt +++ b/build-logic/src/main/kotlin/Publishing.kt @@ -52,6 +52,7 @@ fun Project.configureDokka() { tasks.withType(DokkaTaskPartial::class.java).configureEach { //https://github.com/Kotlin/dokka/issues/1455 dependsOn("assemble") + notCompatibleWithConfigurationCache("See https://github.com/Kotlin/dokka/issues/1217") } tasks.withType(AbstractDokkaTask::class.java).configureEach {