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

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

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

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