From 1f3551ed9179d5bbf7e94d9b37269f758758b8a5 Mon Sep 17 00:00:00 2001 From: Josh Cummings <3627351+jzheaux@users.noreply.github.com> Date: Wed, 12 Mar 2025 22:12:05 -0600 Subject: [PATCH] Work Around JUnit + Gradle Classpath Conflict See https://github.com/junit-team/junit5/issues/4374 PR gh-1037 --- core/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/core/build.gradle b/core/build.gradle index 8d2c3ddf..5b5b03d0 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -39,6 +39,7 @@ dependencies { } testImplementation platform('org.junit:junit-bom') testImplementation "org.junit.vintage:junit-vintage-engine" + testRuntimeOnly("org.junit.platform:junit-platform-launcher") testImplementation "junit:junit" testImplementation "commons-lang:commons-lang"