From e5e3b4cfec20c3f2c28bef8abe53dbe7a174d4c6 Mon Sep 17 00:00:00 2001 From: Stefan Mogeritsch Date: Tue, 12 May 2026 15:17:42 +0200 Subject: [PATCH] refactor(build): Plugin-Anwendung in Gradle-Konfiguration vereinfacht Signed-off-by: Stefan Mogeritsch --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 53be038e..7941f7a7 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -371,8 +371,8 @@ tasks.register("staticAnalysis") { // Apply Dokka (V2) automatically to Kotlin subprojects subprojects { - plugins.withId("org.jetbrains.kotlin.jvm") { apply(plugin = "org.jetbrains.dokka") } - plugins.withId("org.jetbrains.kotlin.multiplatform") { apply(plugin = "org.jetbrains.dokka") } + plugins.withId("org.jetbrains.kotlin.jvm") { pluginManager.apply("org.jetbrains.dokka") } + plugins.withId("org.jetbrains.kotlin.multiplatform") { pluginManager.apply("org.jetbrains.dokka") } } // Aggregate tasks to build multi-module docs in Markdown (GFM) and HTML