File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,16 @@ repositories {
1010 mavenLocal()
1111}
1212
13+ java {
14+ toolchain {
15+ languageVersion = JavaLanguageVersion .of(17 )
16+ }
17+ }
18+
19+ tasks.test {
20+ useJUnitPlatform()
21+ }
22+
1323kotlin {
1424
1525 compilerOptions {
@@ -21,6 +31,7 @@ kotlin {
2131 test {
2232 dependencies {
2333 implementation(libs.kotest.framework.engine)
34+ implementation(libs.kotest.runner.junit5)
2435 implementation(libs.kotest.assertions.core)
2536 }
2637 }
Original file line number Diff line number Diff line change 11[versions ]
22kotest = " 6.0.0"
3- kotlin = " 2.2.0 "
3+ kotlin = " 2.2.10 "
44
55[libraries ]
66kotest-assertions-core = { module = " io.kotest:kotest-assertions-core" , version.ref = " kotest" }
77kotest-framework-engine = { module = " io.kotest:kotest-framework-engine" , version.ref = " kotest" }
8+ kotest-runner-junit5 = { module = " io.kotest:kotest-runner-junit5" , version.ref = " kotest" }
89
910[plugins ]
1011kotlin = { id = " org.jetbrains.kotlin.jvm" , version.ref = " kotlin" }
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.3 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-9.0.0 -bin.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments