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
|
|
|
}
|
|
|
|
|
|
|
|
val dataforgeVersion: String by rootProject.extra
|
2020-10-31 10:04:23 +03:00
|
|
|
|
2022-01-07 12:29:43 +03:00
|
|
|
kscience{
|
2023-05-14 18:33:30 +03:00
|
|
|
jvm()
|
|
|
|
js()
|
|
|
|
dependencies {
|
|
|
|
api("space.kscience:dataforge-context:$dataforgeVersion")
|
|
|
|
api(spclibs.kotlinx.html)
|
|
|
|
api("org.jetbrains.kotlin-wrappers:kotlin-css")
|
|
|
|
}
|
|
|
|
testDependencies {
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:${space.kscience.gradle.KScienceVersions.coroutinesVersion}")
|
|
|
|
}
|
|
|
|
dependencies(jsMain){
|
|
|
|
api("org.jetbrains.kotlin-wrappers:kotlin-extensions")
|
|
|
|
}
|
2022-01-07 12:29:43 +03:00
|
|
|
useSerialization{
|
|
|
|
json()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
readme{
|
2022-08-12 22:16:06 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.DEVELOPMENT
|
2020-03-16 22:24:57 +03:00
|
|
|
}
|