Skip to content

Commit

Permalink
return back project dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
whyoleg committed Nov 5, 2020
1 parent c89bccf commit 155dced
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions examples/interactions/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation("io.rsocket.kotlin:rsocket-core:0.11.1")
implementation("io.rsocket.kotlin:rsocket-transport-local:0.11.1")
implementation(project(":rsocket-core"))
implementation(project(":rsocket-transport-local"))
}
}
}
}

6 changes: 3 additions & 3 deletions examples/multiplatform-chat/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation("io.rsocket.kotlin:rsocket-core:0.11.1")
implementation(project(":rsocket-core"))

implementation("org.jetbrains.kotlinx:kotlinx-serialization-protobuf:1.0.0-RC")
}
Expand All @@ -56,13 +56,13 @@ kotlin {
val clientMain by creating {
dependsOn(commonMain)
dependencies {
implementation("io.rsocket.kotlin:rsocket-transport-ktor-client:0.11.1")
implementation(project(":rsocket-transport-ktor-client"))
}
}

val serverJvmMain by getting {
dependencies {
implementation("io.rsocket.kotlin:rsocket-transport-ktor-server:0.11.1")
implementation(project(":rsocket-transport-ktor-server"))
implementation("io.ktor:ktor-server-cio:1.4.1")
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/nodejs-tcp-transport/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ kotlin {
sourceSets {
val jsMain by getting {
dependencies {
implementation("io.rsocket.kotlin:rsocket-core:0.11.1")
implementation(project(":rsocket-core"))
implementation("org.jetbrains.kotlinx:kotlinx-nodejs:0.0.7")
}
}
Expand Down

0 comments on commit 155dced

Please sign in to comment.