summaryrefslogtreecommitdiff
path: root/sw-client
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2020-10-31 13:45:14 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2020-11-25 01:51:30 +0100
commit35bdbef15323c43235add21a000a7cc1d2ea8893 (patch)
tree268c865b34ce9e927541ff3804e6a6f220a694c6 /sw-client
parentAdd .idea to gitignore for jetbrains dev (diff)
downloadseven-wonders-35bdbef15323c43235add21a000a7cc1d2ea8893.tar.gz
seven-wonders-35bdbef15323c43235add21a000a7cc1d2ea8893.tar.bz2
seven-wonders-35bdbef15323c43235add21a000a7cc1d2ea8893.zip
Upgrade dependencies
- Kotlinx Coroutines to 1.4.1 - Kotlinx Serialization to 1.0.0 - Krossbow to 1.1.0
Diffstat (limited to 'sw-client')
-rw-r--r--sw-client/build.gradle.kts4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw-client/build.gradle.kts b/sw-client/build.gradle.kts
index e3f75f87..0b968b0d 100644
--- a/sw-client/build.gradle.kts
+++ b/sw-client/build.gradle.kts
@@ -2,7 +2,7 @@ plugins {
kotlin("multiplatform")
}
-val krossbowVersion = "0.41.0"
+val krossbowVersion = "1.1.0"
kotlin {
jvm()
@@ -14,7 +14,7 @@ kotlin {
dependencies {
api(project(":sw-common-model"))
api("org.hildan.krossbow:krossbow-stomp-kxserialization:$krossbowVersion")
- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9")
+ implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0")
}
}
val commonTest by getting {
bgstack15