2023-08-23 16:21:11 +03:00
|
|
|
import space.kscience.gradle.Maturity
|
|
|
|
|
2020-11-02 17:53:53 +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-11-02 17:53:53 +03:00
|
|
|
}
|
|
|
|
|
2023-08-23 16:21:11 +03:00
|
|
|
description = """
|
|
|
|
A kotlin API for magix standard and some zero-dependency magix services
|
|
|
|
""".trimIndent()
|
|
|
|
|
2020-11-02 17:53:53 +03:00
|
|
|
kscience {
|
2023-02-18 20:05:26 +03:00
|
|
|
jvm()
|
|
|
|
js()
|
|
|
|
native()
|
2021-01-10 18:41:52 +03:00
|
|
|
useCoroutines()
|
2020-11-03 18:54:52 +03:00
|
|
|
useSerialization{
|
|
|
|
json()
|
|
|
|
}
|
2023-12-13 12:29:06 +03:00
|
|
|
|
|
|
|
commonMain{
|
|
|
|
implementation(spclibs.atomicfu)
|
|
|
|
}
|
2020-11-02 17:53:53 +03:00
|
|
|
}
|
|
|
|
|
2023-08-23 16:21:11 +03:00
|
|
|
readme{
|
|
|
|
maturity = Maturity.EXPERIMENTAL
|
|
|
|
}
|