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

21 lines
350 B
Plaintext
Raw Normal View History

2020-07-19 20:37:44 +03:00
plugins {
2021-04-05 17:41:36 +03:00
id("ru.mipt.npm.gradle.mpp")
`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 {
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
}
}