File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,13 @@ dependencies {
3232 api(libs.jackson.annotations)
3333
3434 // test libs
35- testImplementation(" ${ libs.kotlin.reflect.get()} : ${kotlinVersion} " )
36- testImplementation(libs .junit.api )
37- testImplementation(libs .junit.params )
38- testRuntimeOnly(libs.junit.engine)
35+ testImplementation(platform( libs.junit.bom) )
36+ testImplementation(" org .junit.jupiter:junit-jupiter " )
37+ testRuntimeOnly( " org .junit.platform:junit-platform-launcher " )
38+
3939 testImplementation(libs.mockk)
4040
41+ testImplementation(" ${libs.kotlin.reflect.get()} :${kotlinVersion} " )
4142 testImplementation(libs.jackson.xml)
4243 testImplementation(libs.jackson.jsr310)
4344}
Original file line number Diff line number Diff line change @@ -13,9 +13,7 @@ jackson-annotations = { module = "com.fasterxml.jackson.core:jackson-annotations
1313
1414# test libs
1515kotlin-reflect = { module = " org.jetbrains.kotlin:kotlin-reflect" }
16- junit-api = { module = " org.junit.jupiter:junit-jupiter-api" , version.ref = " junit" }
17- junit-params = { module = " org.junit.jupiter:junit-jupiter-params" , version.ref = " junit" }
18- junit-engine = { module = " org.junit.jupiter:junit-jupiter-engine" , version.ref = " junit" }
16+ junit-bom = { module = " org.junit:junit-bom" , version.ref = " junit" }
1917mockk = " io.mockk:mockk:1.13.17"
2018jackson-xml = { module = " com.fasterxml.jackson.dataformat:jackson-dataformat-xml" , version.ref = " jackson" }
2119jackson-jsr310 = { module = " com.fasterxml.jackson.datatype:jackson-datatype-jsr310" , version.ref = " jackson" }
You can’t perform that action at this time.
0 commit comments