blob: 7c44ca160972a57e1fc6cc12ca57378e5b7cdd31 (
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.1")
implementation("org.slf4j:slf4j-api:1.7.30")
testImplementation(kotlin("test"))
testImplementation(kotlin("test-junit"))
}
|