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

16 lines
274 B
Plaintext
Raw Normal View History

2020-07-19 20:37:44 +03:00
plugins {
2022-08-02 09:46:31 +03:00
id("space.kscience.gradle.mpp")
2021-04-05 17:41:36 +03:00
`maven-publish`
2020-07-19 20:37:44 +03:00
}
2020-12-02 12:35:16 +03:00
kscience{
2023-02-18 20:05:26 +03:00
jvm()
js()
2020-12-02 12:35:16 +03:00
useSerialization {
json()
}
2023-02-18 20:05:26 +03:00
dependencies {
implementation(project(":magix:magix-rsocket"))
implementation(project(":controls-core"))
2020-07-19 20:37:44 +03:00
}
2023-02-18 20:05:26 +03:00
}