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

25 lines
411 B
Plaintext
Raw Normal View History

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()
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)
2024-04-29 15:38:14 +03:00
api(libs.dataforge.meta)
2024-03-12 22:26:43 +03:00
}
}
readme {
maturity = Maturity.EXPERIMENTAL
}