This repository was archived by the owner on Feb 4, 2025. It is now read-only.
File tree 2 files changed +23
-7
lines changed
2 files changed +23
-7
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,10 @@ buildscript {
6
6
}
7
7
}
8
8
9
+ @Suppress(" DSL_SCOPE_VIOLATION" )
9
10
plugins {
10
- kotlin( " multiplatform " ).version( " 1.6.0 " )
11
- id( " io. kotest.multiplatform" ) version " 5.3.1 "
11
+ alias(libs.plugins.kotlin.multiplatform )
12
+ alias(libs.plugins. kotest.multiplatform)
12
13
}
13
14
14
15
repositories {
@@ -31,15 +32,15 @@ kotlin {
31
32
sourceSets {
32
33
val jsMain by getting {
33
34
dependencies {
34
- implementation(" io .ktor:ktor- client-js:2.0.2 " )
35
+ implementation(libs .ktor. client.js )
35
36
}
36
37
}
37
38
val jsTest by getting {
38
39
dependencies {
39
- implementation(" io .kotest:kotest- assertions-core:5.3.1 " )
40
- implementation(" io .kotest:kotest- framework-engine:5.3.0 " )
41
- implementation(" io .kotest:kotest- framework-datatest:5.3.1 " )
42
- implementation(" io .kotest:kotest-property:5.3.0 " )
40
+ implementation(libs .kotest. assertions.core )
41
+ implementation(libs .kotest. framework.engine )
42
+ implementation(libs .kotest. framework.datatest )
43
+ implementation(libs .kotest.property )
43
44
}
44
45
}
45
46
}
Original file line number Diff line number Diff line change
1
+ [versions ]
2
+ kotlin = " 1.6.0"
3
+ kotest = " 5.3.1"
4
+
5
+ [libraries ]
6
+ kotest-assertions-core = { module = " io.kotest:kotest-assertions-core" , version.ref = " kotest" }
7
+ kotest-framework-engine = { module = " io.kotest:kotest-framework-engine" , version.ref = " kotest" }
8
+ kotest-framework-datatest = { module = " io.kotest:kotest-framework-datatest" , version.ref = " kotest" }
9
+ kotest-property = { module = " io.kotest:kotest-property" , version.ref = " kotest" }
10
+
11
+ ktor-client-js = { module = " io.ktor:ktor-client-js" , version = " 2.0.2" }
12
+
13
+ [plugins ]
14
+ kotlin-multiplatform = { id = " org.jetbrains.kotlin.multiplatform" , version.ref = " kotlin" }
15
+ kotest-multiplatform = { id = " io.kotest.multiplatform" , version.ref = " kotest" }
You can’t perform that action at this time.
0 commit comments