Skip to content

Commit 38cb9ee

Browse files
committed
Add JUnit Platform dependencies and update versions
1 parent 26d88f7 commit 38cb9ee

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

gradle/libs.versions.toml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[versions]
22
coroutines = "1.10.2"
33
junit = "5.12.2"
4+
junitPlatform = "1.12.2"
45
jvm = "21"
56
kotlin = "2.1.20"
67
kotlinJunitTools = "0.3.0"
@@ -13,8 +14,10 @@ spotless = "7.0.3"
1314
[libraries]
1415
junit = { module = "org.junit.jupiter:junit-jupiter" }
1516
junit_bom = { module = "org.junit:junit-bom", version.ref = "junit" }
16-
kotlin_junit_tools = {module = "com.yonatankarp:kotlin-junit-tools", version.ref = "kotlinJunitTools"}
17+
junit_platform_engine = { module = "org.junit.platform:junit-platform-engine", version.ref = "junitPlatform" }
18+
junit_platform_launcher = { module = "org.junit.platform:junit-platform-launcher", version.ref = "junitPlatform" }
1719
kotlin_core = { module = "org.jetbrains.kotlin:kotlin-stdlib" }
20+
kotlin_junit_tools = {module = "com.yonatankarp:kotlin-junit-tools", version.ref = "kotlinJunitTools"}
1821
kotlinx_coroutines_core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines" }
1922
kotlinx_coroutines_test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "coroutines" }
2023
logback_classic = { module = "ch.qos.logback:logback-classic" , version.ref = "logback"}
@@ -43,5 +46,7 @@ log_all = [
4346

4447
tests_all = [
4548
"junit",
46-
"mockk"
49+
"junit_platform_engine",
50+
"junit_platform_launcher",
51+
"mockk",
4752
]

0 commit comments

Comments
 (0)