summaryrefslogtreecommitdiff
path: root/sw-client/build.gradle.kts
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2021-02-01 00:34:15 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2021-02-01 00:34:15 +0100
commit61bcba7b0a3fe28fb523455d46eab1bd212c1d04 (patch)
tree4a52cdc8beb4ff5607619ac270e71e3c2a8969ba /sw-client/build.gradle.kts
parentRemove unnecessary Serializable on enums (diff)
downloadseven-wonders-61bcba7b0a3fe28fb523455d46eab1bd212c1d04.tar.gz
seven-wonders-61bcba7b0a3fe28fb523455d46eab1bd212c1d04.tar.bz2
seven-wonders-61bcba7b0a3fe28fb523455d46eab1bd212c1d04.zip
Upgrade Krossbow to 1.1.5
Diffstat (limited to 'sw-client/build.gradle.kts')
-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 13546c72..421b58dd 100644
--- a/sw-client/build.gradle.kts
+++ b/sw-client/build.gradle.kts
@@ -11,8 +11,8 @@ kotlin {
val commonMain by getting {
dependencies {
api(project(":sw-common-model"))
- api("org.hildan.krossbow:krossbow-stomp-kxserialization:1.1.2")
- implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0")
+ api("org.hildan.krossbow:krossbow-stomp-kxserialization:1.1.5")
+ implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.1")
}
}
val commonTest by getting {
bgstack15