From f84ca41f47e65a631d6ae6befa7dcd5a9fa6a6a0 Mon Sep 17 00:00:00 2001 From: Goooler Date: Mon, 7 Oct 2024 00:07:10 +0800 Subject: [PATCH] Add testRuntimeOnly back --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2d523201..f804024d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -41,7 +41,7 @@ dependencies { testImplementation(platform("org.junit:junit-bom:5.11.2")) testImplementation("org.junit.jupiter:junit-jupiter-api") testImplementation("org.junit.platform:junit-platform-suite-engine") - testImplementation("org.junit.platform:junit-platform-launcher") + testRuntimeOnly("org.junit.platform:junit-platform-launcher") } val isCI = providers.environmentVariable("CI").isPresent