summaryrefslogtreecommitdiff
path: root/sw-client
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@booking.com>2020-03-27 10:59:19 +0100
committerJoffrey Bion <joffrey.bion@booking.com>2020-03-27 10:59:39 +0100
commitee2e88d1224d762d54152408b55a749cdb05a8a7 (patch)
tree5b0bb5c6037a5975198d44077cb92616fef1c2b5 /sw-client
parentAdd maven repo to fix temporary jcenter sync issues (diff)
downloadseven-wonders-ee2e88d1224d762d54152408b55a749cdb05a8a7.tar.gz
seven-wonders-ee2e88d1224d762d54152408b55a749cdb05a8a7.tar.bz2
seven-wonders-ee2e88d1224d762d54152408b55a749cdb05a8a7.zip
Fix krossbow common artifact
Diffstat (limited to 'sw-client')
-rw-r--r--sw-client/build.gradle.kts2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw-client/build.gradle.kts b/sw-client/build.gradle.kts
index 0c21cd36..42209833 100644
--- a/sw-client/build.gradle.kts
+++ b/sw-client/build.gradle.kts
@@ -15,7 +15,7 @@ kotlin {
dependencies {
api(project(":sw-common-model"))
implementation(kotlin("stdlib-common"))
- api("org.hildan.krossbow:krossbow-stomp-kxserialization:$krossbowVersion")
+ api("org.hildan.krossbow:krossbow-stomp-kxserialization-metadata:$krossbowVersion")
}
}
val commonTest by getting {
bgstack15