summaryrefslogtreecommitdiff
path: root/sw-client/build.gradle.kts
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2022-07-02 20:53:44 +0200
committerJoffrey Bion <joffrey.bion@gmail.com>2022-07-03 23:56:26 +0200
commit0d1760c2d79ab421d5c2659ae9576d43859c4c4d (patch)
treeb5e61d067a2d5b7aec42416471a7081fb5828ea2 /sw-client/build.gradle.kts
parentRemove feature flag for the now stable versions catalog (diff)
downloadseven-wonders-0d1760c2d79ab421d5c2659ae9576d43859c4c4d.tar.gz
seven-wonders-0d1760c2d79ab421d5c2659ae9576d43859c4c4d.tar.bz2
seven-wonders-0d1760c2d79ab421d5c2659ae9576d43859c4c4d.zip
Upgrade Krossbow to 4.0.2
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 3b260cd0..3ca5c93e 100644
--- a/sw-client/build.gradle.kts
+++ b/sw-client/build.gradle.kts
@@ -11,8 +11,8 @@ kotlin {
val commonMain by getting {
dependencies {
api(projects.swCommonModel)
- api(libs.krossbow.stomp.kxserialization)
- implementation(libs.kotlinx.serialization.json)
+ api(libs.krossbow.stomp.kxserialization.json)
+ api(libs.krossbow.websocket.builtin)
implementation(libs.kotlinx.coroutines.core)
}
}
bgstack15