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

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