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
|
|
|
}
|
|
|
|
|
2023-05-14 18:33:30 +03:00
|
|
|
kscience {
|
|
|
|
jvm()
|
|
|
|
js()
|
2023-05-16 21:12:24 +03:00
|
|
|
native()
|
2023-05-14 18:33:30 +03:00
|
|
|
useSerialization {
|
2022-01-07 12:29:43 +03:00
|
|
|
json()
|
|
|
|
}
|
2023-05-29 21:38:30 +03:00
|
|
|
useCoroutines()
|
2023-05-14 18:33:30 +03:00
|
|
|
dependencies {
|
|
|
|
api(projects.visionforgeCore)
|
|
|
|
}
|
|
|
|
dependencies(jvmTest) {
|
|
|
|
implementation(spclibs.logback.classic)
|
2019-03-08 11:55:01 +03:00
|
|
|
}
|
2022-01-07 12:29:43 +03:00
|
|
|
}
|
|
|
|
|
2023-05-14 18:33:30 +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
|
|
|
}
|