From 954a9be50e3eeb8a25d2aa0ef899c73ba1c9f1fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Stro=CC=88m?= Date: Mon, 19 Feb 2024 08:19:07 +0100 Subject: [PATCH] fix: Fixed deprecation warning when running tests with Gradle. Updated org.junit:junit-bom from 5.9.1 to 5.9.2. --- build.gradle.kts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2a972ea..5c42fe8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,9 +11,10 @@ repositories { } dependencies { - testImplementation(platform("org.junit:junit-bom:5.9.1")) + testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.2") + testImplementation(platform("org.junit:junit-bom:5.9.2")) testImplementation("org.junit.jupiter:junit-jupiter") - implementation ("com.hexadevlabs:gpt4all-java-binding:1.1.5") + implementation("com.hexadevlabs:gpt4all-java-binding:1.1.5") } tasks.test {