2019-03-08 11:55:01 +03:00
|
|
|
plugins {
|
2022-08-12 22:16:06 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
2019-03-08 11:55:01 +03:00
|
|
|
}
|
|
|
|
|
2021-02-16 14:49:15 +03:00
|
|
|
kscience{
|
2022-01-07 12:29:43 +03:00
|
|
|
useSerialization{
|
|
|
|
json()
|
|
|
|
}
|
2020-10-02 19:09:25 +03:00
|
|
|
}
|
2019-12-24 22:09:39 +03:00
|
|
|
|
2019-03-08 11:55:01 +03:00
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
2019-08-04 11:02:36 +03:00
|
|
|
commonMain {
|
2019-03-08 11:55:01 +03:00
|
|
|
dependencies {
|
2020-08-05 22:08:08 +03:00
|
|
|
api(project(":visionforge-core"))
|
2019-03-08 11:55:01 +03:00
|
|
|
}
|
|
|
|
}
|
2022-08-08 22:17:06 +03:00
|
|
|
commonTest{
|
|
|
|
dependencies{
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.4")
|
|
|
|
}
|
|
|
|
}
|
2022-08-12 22:16:06 +03:00
|
|
|
jvmTest{
|
|
|
|
dependencies{
|
|
|
|
implementation("ch.qos.logback:logback-classic:1.2.11")
|
|
|
|
}
|
|
|
|
}
|
2019-03-08 11:55:01 +03:00
|
|
|
}
|
2022-01-07 12:29:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
readme{
|
2022-08-12 22:16:06 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.DEVELOPMENT
|
2020-10-02 19:09:25 +03:00
|
|
|
}
|