From 76ad27a38088ea9e7e4dfa6d7b80f0f04756068a Mon Sep 17 00:00:00 2001 From: Graham Date: Fri, 3 Sep 2021 14:26:25 +0100 Subject: [PATCH] Add junit-platform-launcher dependency Doesn't seem to be bundled with the latest version of IDEA. Signed-off-by: Graham --- build.gradle.kts | 1 + gradle/libs.versions.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index aeca463f..209c14bf 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -134,6 +134,7 @@ configure(subprojects.filter { it.isFree }) { val testRuntimeOnly by configurations testRuntimeOnly(libs.junit.engine) + testRuntimeOnly(libs.junit.launcher) } } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index dce742c2..06b6da65 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -42,6 +42,7 @@ jquery = { module = "org.webjars:jquery", version = "3.6.0" } jsoup = { module = "org.jsoup:jsoup", version = "1.14.2" } junit-api = { module = "org.junit.jupiter:junit-jupiter-api", version = { strictly = "5.7.2" } } junit-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" } +junit-launcher = { module="org.junit.platform:junit-platform-launcher", version = "1.7.2" } kotlin-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinCoroutines" } kotlin-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlinCoroutines" } kotlinPoet = { module = "com.squareup:kotlinpoet", version = "1.9.0" }