2023-11-08 11:52:57 +03:00
|
|
|
plugins {
|
|
|
|
id("space.kscience.gradle.mpp")
|
2023-11-08 21:01:42 +03:00
|
|
|
`maven-publish`
|
2023-11-08 11:52:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kscience {
|
|
|
|
fullStack("js/controls-jupyter.js")
|
|
|
|
useKtor()
|
|
|
|
useContextReceivers()
|
2023-11-08 21:01:42 +03:00
|
|
|
jupyterLibrary("space.kscience.controls.jupyter.ControlsJupyter")
|
2023-11-08 11:52:57 +03:00
|
|
|
dependencies {
|
|
|
|
implementation(projects.controlsVision)
|
2024-04-29 15:38:14 +03:00
|
|
|
implementation(libs.visionforge.jupiter)
|
2023-11-08 11:52:57 +03:00
|
|
|
}
|
|
|
|
jvmMain {
|
|
|
|
implementation(spclibs.logback.classic)
|
|
|
|
}
|
|
|
|
}
|