controls-kt/controls-magix-client/build.gradle.kts

21 lines
353 B
Plaintext
Raw Normal View History

2020-07-19 20:37:44 +03:00
plugins {
2020-09-08 10:13:14 +03:00
id("ru.mipt.npm.mpp")
id("ru.mipt.npm.publish")
2020-07-19 20:37:44 +03:00
}
2020-12-02 12:35:16 +03:00
kscience{
useSerialization {
json()
}
}
2020-07-19 20:37:44 +03:00
kotlin {
sourceSets {
commonMain {
2020-07-19 20:37:44 +03:00
dependencies {
implementation(project(":magix:magix-service"))
2021-02-09 16:39:39 +03:00
implementation(project(":controls-core"))
}
}
2020-07-19 20:37:44 +03:00
}
}