blob: ca2d6fec86c55fb6bb7b597717bd46004aa9fe28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
plugins {
kotlin("jvm")
kotlin("plugin.serialization")
}
dependencies {
implementation(project(":sw-common-model"))
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.1")
testImplementation(kotlin("test"))
testImplementation(kotlin("test-junit"))
}
|