visionforge/visionforge-core/build.gradle.kts

29 lines
694 B
Plaintext
Raw Normal View History

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()
2023-05-16 21:12:24 +03:00
native()
2023-05-14 18:33:30 +03:00
dependencies {
api("space.kscience:dataforge-context:$dataforgeVersion")
api(spclibs.kotlinx.html)
2023-05-16 21:12:24 +03:00
// api("org.jetbrains.kotlin-wrappers:kotlin-css")
2023-05-14 18:33:30 +03:00
}
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
}