2024-03-12 22:26:43 +03:00
|
|
|
import space.kscience.gradle.Maturity
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("space.kscience.gradle.mpp")
|
|
|
|
`maven-publish`
|
|
|
|
}
|
|
|
|
|
|
|
|
description = """
|
|
|
|
Common utilities and services for Magix endpoints.
|
|
|
|
""".trimIndent()
|
|
|
|
|
|
|
|
val dataforgeVersion: String by rootProject.extra
|
|
|
|
|
|
|
|
kscience {
|
|
|
|
jvm()
|
|
|
|
js()
|
|
|
|
native()
|
2024-03-18 09:30:41 +03:00
|
|
|
useSerialization()
|
2024-03-12 22:26:43 +03:00
|
|
|
commonMain {
|
|
|
|
api(projects.magix.magixApi)
|
|
|
|
api("space.kscience:dataforge-meta:$dataforgeVersion")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
readme {
|
|
|
|
maturity = Maturity.EXPERIMENTAL
|
|
|
|
}
|