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

dependencies {
    implementation(project(":sw-client"))
    implementation(kotlin("stdlib-jdk8"))
    testImplementation(kotlin("test"))
    testImplementation(kotlin("test-junit"))
}
bgstack15