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 {
10
10
mavenLocal()
11
11
}
12
12
13
+ java {
14
+ toolchain {
15
+ languageVersion = JavaLanguageVersion .of(17 )
16
+ }
17
+ }
18
+
19
+ tasks.test {
20
+ useJUnitPlatform()
21
+ }
22
+
13
23
kotlin {
14
24
15
25
compilerOptions {
@@ -21,6 +31,7 @@ kotlin {
21
31
test {
22
32
dependencies {
23
33
implementation(libs.kotest.framework.engine)
34
+ implementation(libs.kotest.runner.junit5)
24
35
implementation(libs.kotest.assertions.core)
25
36
}
26
37
}
Original file line number Diff line number Diff line change 1
1
[versions ]
2
2
kotest = " 6.0.0"
3
- kotlin = " 2.2.0 "
3
+ kotlin = " 2.2.10 "
4
4
5
5
[libraries ]
6
6
kotest-assertions-core = { module = " io.kotest:kotest-assertions-core" , version.ref = " kotest" }
7
7
kotest-framework-engine = { module = " io.kotest:kotest-framework-engine" , version.ref = " kotest" }
8
+ kotest-runner-junit5 = { module = " io.kotest:kotest-runner-junit5" , version.ref = " kotest" }
8
9
9
10
[plugins ]
10
11
kotlin = { id = " org.jetbrains.kotlin.jvm" , version.ref = " kotlin" }
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =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
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments