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

22 lines
354 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{
useSerialization {
json()
}
}
2020-07-19 20:37:44 +03:00
kotlin {
sourceSets {
commonMain {
2020-07-19 20:37:44 +03:00
dependencies {
2021-06-21 14:09:59 +03:00
implementation(project(":magix:magix-rsocket"))
2021-02-09 16:39:39 +03:00
implementation(project(":controls-core"))
}
}
2020-07-19 20:37:44 +03:00
}
2021-11-15 14:40:19 +03:00
}