File tree Expand file tree Collapse file tree 2 files changed +7
-13
lines changed Expand file tree Collapse file tree 2 files changed +7
-13
lines changed Original file line number Diff line number Diff line change @@ -38,9 +38,8 @@ kotlin {
3838 sourceSets {
3939 commonMain {
4040 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" ))
4443 }
4544 }
4645 }
Original file line number Diff line number Diff line change @@ -79,15 +79,11 @@ kotlin {
7979 }
8080
8181 sourceSets {
82- commonMain {
83- dependencies {
84- api(" org.jetbrains.kotlin:kotlin-stdlib" )
85- }
82+ val commonMain by getting {
8683 }
87-
88- commonTest {
84+ val commonTest by getting {
8985 dependencies {
90- api( " org.jetbrains. kotlin:kotlin- test" )
86+ implementation( kotlin( " test" ) )
9187 }
9288 }
9389
@@ -101,15 +97,14 @@ kotlin {
10197
10298 val jsMain by getting {
10399 }
104-
105100 val jsTest by getting {
106101 }
107102
108103 val nativeMain by getting {
109- dependsOn(commonMain.get() )
104+ dependsOn(commonMain)
110105 }
111106 val nativeTest by getting {
112- dependsOn(commonTest.get() )
107+ dependsOn(commonTest)
113108 }
114109 }
115110}
You can’t perform that action at this time.
0 commit comments