summaryrefslogtreecommitdiff
path: root/sw-bot
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2021-09-06 18:39:17 +0200
committerJoffrey Bion <joffrey.bion@gmail.com>2021-09-06 18:59:49 +0200
commit2f1e35afed79c3de52a2d4e026d80d851669ce53 (patch)
tree0da72676b43c54f6f5ec788656fac0351e88d206 /sw-bot
parentUpgrade Gradle wrapper to 7.2 (diff)
downloadseven-wonders-2f1e35afed79c3de52a2d4e026d80d851669ce53.tar.gz
seven-wonders-2f1e35afed79c3de52a2d4e026d80d851669ce53.tar.bz2
seven-wonders-2f1e35afed79c3de52a2d4e026d80d851669ce53.zip
Extract common dependency versions to versions catalog
Diffstat (limited to 'sw-bot')
-rw-r--r--sw-bot/build.gradle.kts6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw-bot/build.gradle.kts b/sw-bot/build.gradle.kts
index 523f17e1..86017147 100644
--- a/sw-bot/build.gradle.kts
+++ b/sw-bot/build.gradle.kts
@@ -3,11 +3,11 @@ plugins {
}
dependencies {
- api(project(":sw-client"))
+ api(projects.swClient)
implementation(kotlin("stdlib-jdk8"))
- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2")
+ implementation(libs.kotlinx.coroutines.core)
- implementation("org.slf4j:slf4j-api:1.7.30")
+ implementation(libs.slf4j.api)
testImplementation(kotlin("test"))
testImplementation(kotlin("test-junit"))
bgstack15