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

dependencies {
    implementation(project(":sw-common-model"))
    implementation("com.github.salomonbrys.kotson:kotson:2.5.0")
    testImplementation(kotlin("test"))
    testImplementation(kotlin("test-junit"))
}
bgstack15