summaryrefslogtreecommitdiff
path: root/sw-bot
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2020-10-31 13:45:14 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2020-11-25 01:51:30 +0100
commit35bdbef15323c43235add21a000a7cc1d2ea8893 (patch)
tree268c865b34ce9e927541ff3804e6a6f220a694c6 /sw-bot
parentAdd .idea to gitignore for jetbrains dev (diff)
downloadseven-wonders-35bdbef15323c43235add21a000a7cc1d2ea8893.tar.gz
seven-wonders-35bdbef15323c43235add21a000a7cc1d2ea8893.tar.bz2
seven-wonders-35bdbef15323c43235add21a000a7cc1d2ea8893.zip
Upgrade dependencies
- Kotlinx Coroutines to 1.4.1 - Kotlinx Serialization to 1.0.0 - Krossbow to 1.1.0
Diffstat (limited to 'sw-bot')
-rw-r--r--sw-bot/build.gradle.kts2
1 files changed, 2 insertions, 0 deletions
diff --git a/sw-bot/build.gradle.kts b/sw-bot/build.gradle.kts
index ac565683..c4cd1eaa 100644
--- a/sw-bot/build.gradle.kts
+++ b/sw-bot/build.gradle.kts
@@ -5,6 +5,8 @@ plugins {
dependencies {
implementation(project(":sw-client"))
implementation(kotlin("stdlib-jdk8"))
+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
+
testImplementation(kotlin("test"))
testImplementation(kotlin("test-junit"))
}
bgstack15