Skip to content

Commit

Permalink
Snapshots to avoid known issue (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
yschimke authored Mar 27, 2021
1 parent d949894 commit 3c035c5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ repositories {
mavenCentral()
maven(url = "https://jitpack.io")
maven(url = "https://dl.bintray.com/kotlinx/kotlinx")
maven(url = "https://oss.jfrog.org/artifactory/oss-snapshot-local/")
}

group = "com.github.yschimke"
Expand Down Expand Up @@ -112,16 +113,16 @@ graal {
}

dependencies {
implementation("io.rsocket.kotlin:rsocket-core-jvm:0.12.0")
implementation("io.rsocket.kotlin:rsocket-transport-ktor-client:0.12.0")
implementation("io.rsocket.kotlin:rsocket-core-jvm:0.13.0-SNAPSHOT")
implementation("io.rsocket.kotlin:rsocket-transport-ktor-client:0.13.0-SNAPSHOT")
implementation("io.ktor:ktor-network-tls:1.5.0")
implementation("io.ktor:ktor-client-okhttp:1.5.0")
implementation("io.ktor:ktor-client-core-jvm:1.5.0")

// define a BOM and its version
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.10.0-RC1"))
implementation(platform("com.squareup.okhttp3:okhttp-bom:5.0.0-alpha.2"))

implementation("com.github.yschimke:oksocial-output:5.10")
implementation("com.github.yschimke:oksocial-output:6.1")
implementation("com.squareup.okhttp3:okhttp")
implementation("com.squareup.okio:okio:3.0.0-alpha.1")
implementation("info.picocli:picocli:4.5.2")
Expand Down
6 changes: 3 additions & 3 deletions src/main/kotlin/io/rsocket/cli/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
*/
package io.rsocket.cli

import com.baulsupp.oksocial.output.ConsoleHandler
import com.baulsupp.oksocial.output.SimpleResponse
import com.baulsupp.oksocial.output.SimpleResponseExtractor
import com.baulsupp.oksocial.output.handler.ConsoleHandler
import com.baulsupp.oksocial.output.responses.SimpleResponse
import com.baulsupp.oksocial.output.responses.SimpleResponseExtractor
import com.baulsupp.oksocial.output.UsageException
import io.ktor.utils.io.core.ByteReadPacket
import io.ktor.utils.io.core.readByteBuffer
Expand Down

0 comments on commit 3c035c5

Please sign in to comment.