From 33cae97ddb334b531c3e08dccd2587ad0790ee77 Mon Sep 17 00:00:00 2001 From: Danilo Pianini Date: Fri, 8 Aug 2025 14:05:59 +0200 Subject: [PATCH] docs(website): include the root project as module, as Kotlin/dokka#3979 is solved. This commit should be merged only after https://github.com/Kotlin/dokka/commit/71fa92f1ecf056486ca1cddb8b8f737b4288fc40 is released --- alchemist-full/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alchemist-full/build.gradle.kts b/alchemist-full/build.gradle.kts index e4aa6a5760..772662a425 100644 --- a/alchemist-full/build.gradle.kts +++ b/alchemist-full/build.gradle.kts @@ -41,7 +41,7 @@ buildscript { dependencies { runtimeOnly(rootProject) - rootProject.subprojects.filterNot { it == project }.forEach { + rootProject.allprojects.filterNot { it == project }.forEach { runtimeOnly(it) dokka(it) }