36 lines
981 B
Plaintext
36 lines
981 B
Plaintext
plugins {
|
|
id("space.kscience.gradle.jvm")
|
|
id("com.github.johnrengelman.shadow") version "7.1.2"
|
|
`maven-publish`
|
|
// application
|
|
}
|
|
|
|
kotlin {
|
|
explicitApi = null
|
|
}
|
|
|
|
val dataforgeVersion: String by rootProject.extra
|
|
val plotlyKtVersion = "0.6.0"
|
|
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:plotlykt-core:$plotlyKtVersion")
|
|
|
|
implementation("com.github.ajalt.clikt:clikt:4.2.1")
|
|
}
|
|
|
|
kscience{
|
|
jupyterLibrary("ru.inr.mass.notebook.NumassJupyter")
|
|
}
|
|
|
|
//application {
|
|
// mainClass.set("ru.inr.mass.scripts.Spectrum_serverKt")
|
|
//} |