numass/numass-workspace/build.gradle.kts
Alexander Nozik ef670f8418
Refactor visualization
Replace usage of Stream:toList because of glitches in scripting
2022-11-21 16:36:24 +03:00

29 lines
853 B
Plaintext

plugins {
id("space.kscience.gradle.jvm")
id("com.github.johnrengelman.shadow") version "7.1.2"
`maven-publish`
}
kotlin {
explicitApi = null
}
val dataforgeVersion: String by rootProject.extra
val visionForgeVersion: String by rootProject.extra
val kmathVersion: String by rootProject.extra
val tablesVersion: String by rootProject.extra
dependencies {
implementation(projects.numassDataProto)
implementation(projects.numassModel)
implementation(projects.numassAnalysis)
implementation("space.kscience:dataforge-workspace:$dataforgeVersion")
implementation("space.kscience:kmath-jupyter:$kmathVersion")
implementation("space.kscience:tables-kt:$tablesVersion")
implementation("space.kscience:visionforge-plotly:$visionForgeVersion")
}
kscience{
jupyterLibrary("ru.inr.mass.notebook.NumassJupyter")
}