visionforge/jupyter/build.gradle.kts

22 lines
360 B
Plaintext
Raw Normal View History

2021-12-06 22:45:24 +03:00
plugins {
2022-08-12 22:16:06 +03:00
id("space.kscience.gradle.mpp")
2021-12-06 22:45:24 +03:00
}
description = "Common visionforge jupyter module"
2023-05-14 18:33:30 +03:00
kscience {
jvm()
js()
jupyterLibrary()
dependencies {
api(projects.visionforgeCore)
}
dependencies(jvmMain){
api(projects.visionforgeServer)
2021-12-06 22:45:24 +03:00
}
}
2023-05-14 18:33:30 +03:00
2021-12-06 22:45:24 +03:00
readme {
2022-08-12 22:16:06 +03:00
maturity = space.kscience.gradle.Maturity.EXPERIMENTAL
2021-12-06 22:45:24 +03:00
}