File tree Expand file tree Collapse file tree 3 files changed +18
-12
lines changed Expand file tree Collapse file tree 3 files changed +18
-12
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,7 @@ import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
3
3
plugins {
4
4
alias(libs.plugins.kotlin.multiplatform)
5
5
alias(libs.plugins.kotest)
6
- id(" com.google.devtools.ksp" ) version " 2.2.0-2.0.2"
7
- }
8
-
9
- repositories {
10
- mavenCentral()
11
- mavenLocal()
6
+ alias(libs.plugins.ksp)
12
7
}
13
8
14
9
kotlin {
@@ -18,9 +13,9 @@ kotlin {
18
13
}
19
14
20
15
linuxX64()
21
- // mingwX64()
22
- // macosX64()
23
- // iosX64()
16
+ mingwX64()
17
+ macosX64()
18
+ iosX64()
24
19
25
20
sourceSets {
26
21
nativeTest {
Original file line number Diff line number Diff line change 1
1
[versions ]
2
- kotest = " 6.0.0"
3
- kotlin = " 2.2.0"
2
+ kotest = " 6.0.0.2113-SNAPSHOT"
3
+ kotlin = " 2.2.10"
4
+ ksp = " 2.2.10-2.0.2"
4
5
5
6
[libraries ]
6
7
kotest-framework-engine = { module = " io.kotest:kotest-framework-engine" , version.ref = " kotest" }
7
8
kotest-assertions-core = { module = " io.kotest:kotest-assertions-core" , version.ref = " kotest" }
8
9
9
10
[plugins ]
10
11
kotlin-multiplatform = { id = " org.jetbrains.kotlin.multiplatform" , version.ref = " kotlin" }
11
- kotest = { id = " io.kotest" , version.ref = " kotest" }
12
+ kotest = { id = " io.kotest" , version = " 6.0.0" }
13
+ ksp = { id = " com.google.devtools.ksp" , version.ref = " ksp" }
Original file line number Diff line number Diff line change @@ -2,5 +2,14 @@ pluginManagement {
2
2
repositories {
3
3
gradlePluginPortal()
4
4
mavenLocal()
5
+ maven(" https://central.sonatype.com/repository/maven-snapshots" )
6
+ }
7
+ }
8
+
9
+ dependencyResolutionManagement {
10
+ repositories {
11
+ mavenLocal()
12
+ mavenCentral()
13
+ maven(" https://central.sonatype.com/repository/maven-snapshots" )
5
14
}
6
15
}
You can’t perform that action at this time.
0 commit comments