2021-03-07 19:22:30 +03:00
|
|
|
plugins {
|
2022-08-12 22:16:06 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
2021-03-07 19:22:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
description = "Jupyter api artifact for GDML rendering"
|
|
|
|
|
2023-05-14 18:33:30 +03:00
|
|
|
kscience {
|
|
|
|
fullStack("js/gdml-jupyter.js",
|
|
|
|
jsConfig = { useCommonJs() }
|
|
|
|
) {
|
|
|
|
commonWebpackConfig {
|
|
|
|
sourceMaps = false
|
|
|
|
cssSupport {
|
|
|
|
enabled.set(false)
|
2021-05-10 22:07:16 +03:00
|
|
|
}
|
2021-03-10 21:58:28 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-14 18:33:30 +03:00
|
|
|
dependencies{
|
|
|
|
implementation(projects.visionforgeSolid)
|
|
|
|
implementation(projects.jupyter)
|
2021-03-10 21:58:28 +03:00
|
|
|
}
|
|
|
|
|
2023-05-14 18:33:30 +03:00
|
|
|
dependencies(jvmMain){
|
|
|
|
implementation(projects.visionforgeGdml)
|
2021-03-10 21:58:28 +03:00
|
|
|
}
|
2021-03-07 19:22:30 +03:00
|
|
|
|
2023-05-14 18:33:30 +03:00
|
|
|
dependencies(jsMain){
|
|
|
|
implementation(projects.visionforgeThreejs)
|
|
|
|
implementation(projects.ui.ring)
|
|
|
|
}
|
|
|
|
|
2021-09-14 16:30:18 +03:00
|
|
|
jupyterLibrary("space.kscience.visionforge.gdml.jupyter.GdmlForJupyter")
|
2021-06-29 11:49:41 +03:00
|
|
|
}
|
|
|
|
|
2021-07-10 16:51:57 +03:00
|
|
|
readme {
|
2022-08-12 22:16:06 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.EXPERIMENTAL
|
2021-09-14 16:30:18 +03:00
|
|
|
}
|