diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8f29cf0..0d0ab7e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,6 +12,11 @@ updates: groups: # https://github.blog/2023-08-24-a-faster-way-to-manage-version-updates-with-dependabot/ # https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups + junit: + patterns: + - "org.junit:*" + - "org.junit.jupiter:*" + - "org.junit.platform:*" kotlin: patterns: - "org.jetbrains.kotlin:*" diff --git a/engine/build.gradle.kts b/engine/build.gradle.kts index 15c6725..ea9c61f 100644 --- a/engine/build.gradle.kts +++ b/engine/build.gradle.kts @@ -79,7 +79,7 @@ dependencies { testImplementation("org.spockframework:spock-core:2.3-groovy-4.0") testRuntimeOnly("net.bytebuddy:byte-buddy:1.18.1") - testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.13.4") + testRuntimeOnly("org.junit.platform:junit-platform-launcher:6.0.1") } java { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 304d19c..0e42ace 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -16,7 +16,7 @@ slf4jVersionrange = "[1.7,3)" [libraries] junit4 = { module = "junit:junit", version = "4.13.2" } -junit5 = { module = "org.junit:junit-bom", version = "5.13.4" } +junit5 = { module = "org.junit:junit-bom", version = "6.0.1" } junixsocketCore = { module = "com.kohlschutter.junixsocket:junixsocket-core", version.ref = "junixsocket" } junixsocketCommon = { module = "com.kohlschutter.junixsocket:junixsocket-common", version.ref = "junixsocket" } kotlin = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" } diff --git a/integrationtest/build.gradle.kts b/integrationtest/build.gradle.kts index 33abf74..2548366 100644 --- a/integrationtest/build.gradle.kts +++ b/integrationtest/build.gradle.kts @@ -55,7 +55,7 @@ dependencies { testRuntimeOnly(libs.logback) testImplementation("org.spockframework:spock-core:2.3-groovy-4.0") testRuntimeOnly("net.bytebuddy:byte-buddy:1.18.1") - testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.13.4") + testRuntimeOnly("org.junit.platform:junit-platform-launcher:6.0.1") } tasks.check.get().shouldRunAfter(project(":engine").tasks.check)