diff options
author | joffrey-bion <joffrey.bion@gmail.com> | 2020-10-31 13:45:14 +0100 |
---|---|---|
committer | joffrey-bion <joffrey.bion@gmail.com> | 2020-11-25 01:51:30 +0100 |
commit | 35bdbef15323c43235add21a000a7cc1d2ea8893 (patch) | |
tree | 268c865b34ce9e927541ff3804e6a6f220a694c6 /sw-bot | |
parent | Add .idea to gitignore for jetbrains dev (diff) | |
download | seven-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.kts | 2 |
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")) } |