numass/numass-workspace/build.gradle.kts

36 lines
976 B
Plaintext
Raw Normal View History

2021-01-29 19:23:16 +03:00
plugins {
id("space.kscience.gradle.jvm")
id("com.github.johnrengelman.shadow") version "7.1.2"
2021-03-08 22:58:28 +03:00
`maven-publish`
2023-11-29 12:57:15 +03:00
application
2021-01-29 19:23:16 +03:00
}
2021-02-01 21:48:03 +03:00
kotlin {
explicitApi = null
}
2021-01-29 19:23:16 +03:00
val dataforgeVersion: String by rootProject.extra
val plotlyKtVersion = "0.6.0"
2021-03-08 22:58:28 +03:00
val kmathVersion: String by rootProject.extra
2021-12-21 13:29:48 +03:00
val tablesVersion: String by rootProject.extra
2021-01-29 19:23:16 +03:00
dependencies {
implementation(projects.numassDataProto)
implementation(projects.numassModel)
implementation(projects.numassAnalysis)
2021-03-08 22:58:28 +03:00
implementation("space.kscience:dataforge-workspace:$dataforgeVersion")
implementation("space.kscience:kmath-jupyter:$kmathVersion")
2021-12-21 13:29:48 +03:00
implementation("space.kscience:tables-kt:$tablesVersion")
implementation("space.kscience:plotlykt-core:$plotlyKtVersion")
implementation("com.github.ajalt.clikt:clikt:4.2.1")
}
kscience{
jupyterLibrary("ru.inr.mass.notebook.NumassJupyter")
}
//application {
2023-11-29 12:57:15 +03:00
// mainClass.set("ru.inr.mass.scripts.Get_spectrumKt")
//}