summaryrefslogtreecommitdiff
path: root/sw-bot/build.gradle.kts
blob: 64a03734af7e88967aeb51fb8618acadab971c4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
plugins {
    kotlin("jvm")
}

dependencies {
    implementation(project(":sw-client"))
    implementation(kotlin("stdlib-jdk8"))
    implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")

    implementation("org.slf4j:slf4j-api:1.7.30")

    testImplementation(kotlin("test"))
    testImplementation(kotlin("test-junit"))
}
bgstack15