From 0de532a1efe4a7c7762021d9accbc35232cfab9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Stro=CC=88m?= Date: Tue, 20 Feb 2024 13:15:39 +0100 Subject: [PATCH] fix: Fixed IntelliJ testing to work again. The testing in IntelliJ stopped working after the commit 954a9be50e3eeb8a25d2aa0ef899c73ba1c9f1fa, which added `testRuntimeOnly(org.junit.platform:junit-platform-launcher:1.10.2)`. It should have been version 1.9.2, which is compatible with the versions we are using. It still worked in Gradle Wrapper however. --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 5c42fe8..49cd957 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,9 +11,9 @@ repositories { } dependencies { - testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.2") + testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.9.2") testImplementation(platform("org.junit:junit-bom:5.9.2")) - testImplementation("org.junit.jupiter:junit-jupiter") + testImplementation("org.junit.jupiter:junit-jupiter:5.9.2") implementation("com.hexadevlabs:gpt4all-java-binding:1.1.5") }