numass/numass-workspace/build.gradle.kts

25 lines
700 B
Plaintext
Raw Normal View History

2021-01-29 19:23:16 +03:00
plugins {
kotlin("jvm")
id("ru.mipt.npm.kscience")
2021-02-01 21:48:03 +03:00
id("com.github.johnrengelman.shadow") version "6.1.0"
2021-01-29 19:23:16 +03:00
}
2021-02-01 21:48:03 +03:00
kscience {
2021-01-29 19:23:16 +03:00
publish()
}
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 plotlyVersion: String by rootProject.extra("0.3.1-dev-5")
val kmathVersion: String by rootProject.extra("0.2.0-dev-6")
dependencies {
implementation(project(":numass-data-proto"))
implementation("hep.dataforge:dataforge-workspace:$dataforgeVersion")
implementation("kscience.plotlykt:plotlykt-core:$plotlyVersion")
implementation("kscience.kmath:kmath-histograms:$kmathVersion")
2021-02-01 21:48:03 +03:00
implementation("kscience.kmath:kmath-for-real:$kmathVersion")
2021-01-29 19:23:16 +03:00
}