Skip to content
This repository was archived by the owner on Nov 13, 2025. It is now read-only.

Commit 0a72ab7

Browse files
committed
Use junit-platform-launcher
1 parent 9d2253e commit 0a72ab7

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ val dependencyVersions = listOf(
1515
"org.apache.commons:commons-lang3:3.19.0",
1616
"org.jetbrains:annotations:26.0.2-1",
1717
libs.junit4,
18+
libs.junit5,
1819
)
1920

2021
val dependencyGroupVersions = mapOf<String, String>(

engine/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ dependencies {
7979

8080
testImplementation("org.spockframework:spock-core:2.3-groovy-4.0")
8181
testRuntimeOnly("net.bytebuddy:byte-buddy:1.17.7")
82+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.13.4")
8283
}
8384

8485
java {

gradle/libs.versions.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ slf4jVersionrange = "[1.7,3)"
1616

1717
[libraries]
1818
junit4 = { module = "junit:junit", version = "4.13.2" }
19+
junit5 = { module = "org.junit:junit-bom", version = "5.13.4" }
1920
junixsocketCore = { module = "com.kohlschutter.junixsocket:junixsocket-core", version.ref = "junixsocket" }
2021
junixsocketCommon = { module = "com.kohlschutter.junixsocket:junixsocket-common", version.ref = "junixsocket" }
2122
kotlin = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" }

integrationtest/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ dependencies {
5555
testRuntimeOnly(libs.logback)
5656
testImplementation("org.spockframework:spock-core:2.3-groovy-4.0")
5757
testRuntimeOnly("net.bytebuddy:byte-buddy:1.17.7")
58+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.13.4")
5859
}
5960
tasks.check.get().shouldRunAfter(project(":engine").tasks.check)
6061

0 commit comments

Comments
 (0)