File tree 2 files changed +7
-13
lines changed
2 files changed +7
-13
lines changed Original file line number Diff line number Diff line change @@ -38,9 +38,8 @@ kotlin {
38
38
sourceSets {
39
39
commonMain {
40
40
dependencies {
41
- api(" org.jetbrains.kotlin:kotlin-stdlib" )
42
- api(" org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.8" )
43
- api(project(" :kotlinx-collections-immutable" ))
41
+ implementation(" org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.8" )
42
+ implementation(project(" :kotlinx-collections-immutable" ))
44
43
}
45
44
}
46
45
}
Original file line number Diff line number Diff line change @@ -79,15 +79,11 @@ kotlin {
79
79
}
80
80
81
81
sourceSets {
82
- commonMain {
83
- dependencies {
84
- api(" org.jetbrains.kotlin:kotlin-stdlib" )
85
- }
82
+ val commonMain by getting {
86
83
}
87
-
88
- commonTest {
84
+ val commonTest by getting {
89
85
dependencies {
90
- api( " org.jetbrains. kotlin:kotlin- test" )
86
+ implementation( kotlin( " test" ) )
91
87
}
92
88
}
93
89
@@ -101,15 +97,14 @@ kotlin {
101
97
102
98
val jsMain by getting {
103
99
}
104
-
105
100
val jsTest by getting {
106
101
}
107
102
108
103
val nativeMain by getting {
109
- dependsOn(commonMain.get() )
104
+ dependsOn(commonMain)
110
105
}
111
106
val nativeTest by getting {
112
- dependsOn(commonTest.get() )
107
+ dependsOn(commonTest)
113
108
}
114
109
}
115
110
}
You can’t perform that action at this time.
0 commit comments