summaryrefslogtreecommitdiff
path: root/sw-client
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2020-12-06 17:36:22 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2020-12-06 17:36:22 +0100
commit8bd6c8a7fcd28c9534feaf45b1d447d68185834d (patch)
tree5ba15f00fb7a5745a89482e62626de9eaa536b42 /sw-client
parentEnable actuator and prometheus metrics (diff)
downloadseven-wonders-8bd6c8a7fcd28c9534feaf45b1d447d68185834d.tar.gz
seven-wonders-8bd6c8a7fcd28c9534feaf45b1d447d68185834d.tar.bz2
seven-wonders-8bd6c8a7fcd28c9534feaf45b1d447d68185834d.zip
Upgrade to krossbow 1.1.2 to fix UTF-8 bugs
Diffstat (limited to 'sw-client')
-rw-r--r--sw-client/build.gradle.kts4
1 files changed, 1 insertions, 3 deletions
diff --git a/sw-client/build.gradle.kts b/sw-client/build.gradle.kts
index 0b968b0d..13546c72 100644
--- a/sw-client/build.gradle.kts
+++ b/sw-client/build.gradle.kts
@@ -2,8 +2,6 @@ plugins {
kotlin("multiplatform")
}
-val krossbowVersion = "1.1.0"
-
kotlin {
jvm()
js {
@@ -13,7 +11,7 @@ kotlin {
val commonMain by getting {
dependencies {
api(project(":sw-common-model"))
- api("org.hildan.krossbow:krossbow-stomp-kxserialization:$krossbowVersion")
+ api("org.hildan.krossbow:krossbow-stomp-kxserialization:1.1.2")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0")
}
}
bgstack15