From 84eb1eab69f8a12c7c8ac1eb52dcf8027c1578a4 Mon Sep 17 00:00:00 2001 From: chrisly42 Date: Tue, 13 May 2025 21:12:38 +0200 Subject: [PATCH] Upgraded JUnit. --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 8ab0a00..0c7e240 100644 --- a/build.gradle +++ b/build.gradle @@ -21,12 +21,12 @@ repositories { dependencies { implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8' - testImplementation 'org.assertj:assertj-core:3.25.3' - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2' - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2' + testImplementation 'org.assertj:assertj-core:3.26.3' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.1' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.2' testImplementation "org.jetbrains.kotlin:kotlin-test" testImplementation "org.jetbrains.kotlin:kotlin-reflect" - testImplementation 'org.junit.platform:junit-platform-launcher:1.10.2' + testImplementation 'org.junit.platform:junit-platform-launcher:1.11.2' // testImplementation "org.jetbrains.kotlin:kotlin-test-junit" }