2021-07-21 16:31:17 +03:00
|
|
|
plugins {
|
2022-08-12 22:16:06 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
2021-07-21 16:31:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
val markdownVersion = "0.2.4"
|
|
|
|
|
|
|
|
kscience {
|
2023-05-14 18:33:30 +03:00
|
|
|
jvm()
|
2021-07-21 16:31:17 +03:00
|
|
|
js {
|
2022-01-02 19:43:31 +03:00
|
|
|
binaries.library()
|
2021-07-21 16:31:17 +03:00
|
|
|
}
|
2023-05-14 18:33:30 +03:00
|
|
|
dependencies {
|
|
|
|
api(project(":visionforge-core"))
|
|
|
|
api("org.jetbrains:markdown:$markdownVersion")
|
2021-07-21 16:31:17 +03:00
|
|
|
}
|
2023-05-14 18:33:30 +03:00
|
|
|
useSerialization()
|
2021-07-21 16:31:17 +03:00
|
|
|
}
|