diff --git a/build.gradle.kts b/build.gradle.kts index 209c14bf..1f15ce61 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -110,6 +110,17 @@ configure(subprojects.filter { it.isFree }) { toolVersion = "0.8.7" } + plugins.withType { + dependencies { + val testImplementation by configurations + testImplementation(libs.junit.api) + + val testRuntimeOnly by configurations + testRuntimeOnly(libs.junit.engine) + testRuntimeOnly(libs.junit.launcher) + } + } + plugins.withType { apply(plugin = "org.jetbrains.dokka") apply(plugin = "org.jmailen.kotlinter")