Skip to content

Commit 7aa183e

Browse files
authored
fix(rt): Favor kotlin-test-juint5 over kotlin-test to resolve intermittent build failures (#316)
1 parent 07a1bf0 commit 7aa183e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

gradle/jvm.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@ kotlin {
1515
}
1616

1717
jvmTest.dependencies {
18-
api group: 'org.jetbrains.kotlin', name: 'kotlin-test', version: kotlinVersion
19-
api group: 'org.jetbrains.kotlin', name: 'kotlin-test-junit5', version: kotlinVersion
18+
api "org.jetbrains.kotlin:kotlin-test-junit5:$kotlinVersion"
2019

21-
implementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: junitVersion
20+
implementation "org.junit.jupiter:junit-jupiter:$junitVersion"
2221
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-debug:$coroutinesVersion"
2322
implementation "io.kotest:kotest-assertions-core-jvm:$kotestVersion"
2423
}

0 commit comments

Comments
 (0)