summaryrefslogtreecommitdiff
path: root/sw-client/build.gradle.kts
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2020-01-05 12:31:46 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2020-01-05 18:19:32 +0100
commit0adc5ecf270905d565ff7dfc460f0967f356d32a (patch)
tree2a6b87c32728cb0632cfb290903c4f1a5af28b72 /sw-client/build.gradle.kts
parentRemove unnecessary EAP Kotlin repository (diff)
downloadseven-wonders-0adc5ecf270905d565ff7dfc460f0967f356d32a.tar.gz
seven-wonders-0adc5ecf270905d565ff7dfc460f0967f356d32a.tar.bz2
seven-wonders-0adc5ecf270905d565ff7dfc460f0967f356d32a.zip
Upgrade to Krossbow 0.4.1
Diffstat (limited to 'sw-client/build.gradle.kts')
-rw-r--r--sw-client/build.gradle.kts3
1 files changed, 2 insertions, 1 deletions
diff --git a/sw-client/build.gradle.kts b/sw-client/build.gradle.kts
index 07e658d0..1f4996bc 100644
--- a/sw-client/build.gradle.kts
+++ b/sw-client/build.gradle.kts
@@ -3,7 +3,7 @@ plugins {
id("org.jlleitschuh.gradle.ktlint")
}
-val krossbowVersion = "0.3.1"
+val krossbowVersion = "0.4.1"
kotlin {
jvm()
@@ -40,6 +40,7 @@ kotlin {
dependencies {
implementation(kotlin("stdlib-js"))
implementation("org.hildan.krossbow:krossbow-client-js:$krossbowVersion")
+ implementation(npm("webstomp-client")) // required by krossbow
}
}
val jsTest by getting {
bgstack15