From c66aabd6fc73f6de2e0ed8e56c0d9db90e48009848a6923b68d192bcf7ce7d34 Mon Sep 17 00:00:00 2001 From: Minimons Date: Tue, 27 Jan 2026 11:06:41 +0100 Subject: [PATCH] NoIssue: Bump to junit-bom:6.0.2 --- build.gradle.kts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index af42e3a..7b0a761 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -29,21 +29,22 @@ repositories { dependencies { // The test classes are compiled with these: - implementation("com.r35157.nenjim:hubd-api:0.0.0") - implementation("com.r35157.nenjim:hubd-impl-ref:0.0.0") - implementation("org.jetbrains:annotations:26.0.1") + implementation("com.r35157.nenjim:hubd-api:0.1-dev") + implementation("com.r35157.nenjim:hubd-impl-ref:0.1-dev") // The JUnit platform will not be included in the JAR file but are needed for running the tests: - testImplementation(platform("org.junit:junit-bom:5.11.4")) + testImplementation(platform("org.junit:junit-bom:6.0.2")) testImplementation("org.junit.jupiter:junit-jupiter") testRuntimeOnly("org.junit.platform:junit-platform-launcher") + + compileOnly("org.jetbrains:annotations:26.0.2-1") } java { toolchain { languageVersion.set(JavaLanguageVersion.of(25)) } } -tasks.withType.configureEach { +tasks.withType().configureEach { options.release.set(25) }