File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -24,10 +24,9 @@ kotlin {
2424 sourceSets {
2525 val commonMain by getting {
2626 dependencies {
27- implementation(" io.rsocket.kotlin :rsocket-core:0.11.1 " )
28- implementation(" io.rsocket.kotlin :rsocket-transport-local:0.11.1 " )
27+ implementation(project( " :rsocket-core" ) )
28+ implementation(project( " :rsocket-transport-local" ) )
2929 }
3030 }
3131 }
3232}
33-
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ kotlin {
4747 sourceSets {
4848 val commonMain by getting {
4949 dependencies {
50- implementation(" io.rsocket.kotlin :rsocket-core:0.11.1 " )
50+ implementation(project( " :rsocket-core" ) )
5151
5252 implementation(" org.jetbrains.kotlinx:kotlinx-serialization-protobuf:1.0.0-RC" )
5353 }
@@ -56,13 +56,13 @@ kotlin {
5656 val clientMain by creating {
5757 dependsOn(commonMain)
5858 dependencies {
59- implementation(" io.rsocket.kotlin :rsocket-transport-ktor-client:0.11.1 " )
59+ implementation(project( " :rsocket-transport-ktor-client" ) )
6060 }
6161 }
6262
6363 val serverJvmMain by getting {
6464 dependencies {
65- implementation(" io.rsocket.kotlin :rsocket-transport-ktor-server:0.11.1 " )
65+ implementation(project( " :rsocket-transport-ktor-server" ) )
6666 implementation(" io.ktor:ktor-server-cio:1.4.1" )
6767 }
6868 }
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ kotlin {
2828 sourceSets {
2929 val jsMain by getting {
3030 dependencies {
31- implementation(" io.rsocket.kotlin :rsocket-core:0.11.1 " )
31+ implementation(project( " :rsocket-core" ) )
3232 implementation(" org.jetbrains.kotlinx:kotlinx-nodejs:0.0.7" )
3333 }
3434 }
You can’t perform that action at this time.
0 commit comments