Skip to content

Commit d95fc93

Browse files
add junit 5 to json
1 parent bd3936e commit d95fc93

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

dataframe-json/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ dependencies {
2626
implementation(libs.serialization.json)
2727
implementation(libs.sl4j)
2828

29-
testImplementation(libs.kotlin.test)
29+
// Use Kotlin test integration for JUnit 5 to satisfy variant 'kotlin-test-framework-junit5'
30+
testImplementation(libs.kotlin.test.junit5)
3031
testImplementation(libs.junit.jupiter)
3132
testImplementation(libs.junit.jupiter.engine)
3233
testImplementation(libs.junit.jupiter.params)

gradle/libs.versions.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ kotlin-compiler = { group = "org.jetbrains.kotlin", name = "kotlin-compiler", ve
161161
kotlin-compiler-embeddable = { group = "org.jetbrains.kotlin", name = "kotlin-compiler-embeddable", version.ref = "kotlin" }
162162
kotlin-compiler-internal-test-framework = { group = "org.jetbrains.kotlin", name = "kotlin-compiler-internal-test-framework", version.ref = "kotlin" }
163163
kotlin-test = { group = "org.jetbrains.kotlin", name = "kotlin-test", version.ref = "kotlin" }
164+
kotlin-test-junit5 = { group = "org.jetbrains.kotlin", name = "kotlin-test-junit5", version.ref = "kotlin" }
164165
kotlin-script-runtime = { group = "org.jetbrains.kotlin", name = "kotlin-script-runtime", version.ref = "kotlin" }
165166
kotlin-annotations-jvm = { group = "org.jetbrains.kotlin", name = "kotlin-annotations-jvm", version.ref = "kotlin" }
166167
kotlin-jupyter-test-kit = { group = "org.jetbrains.kotlinx", name = "kotlin-jupyter-test-kit", version.ref = "kotlinJupyter" }

0 commit comments

Comments
 (0)