2021-01-29 19:23:16 +03:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
2021-03-08 22:58:28 +03:00
|
|
|
id("ru.mipt.npm.gradle.common")
|
2021-02-01 21:48:03 +03:00
|
|
|
id("com.github.johnrengelman.shadow") version "6.1.0"
|
2021-03-08 22:58:28 +03:00
|
|
|
`maven-publish`
|
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
|
2021-05-16 22:41:21 +03:00
|
|
|
val plotlyVersion: String by rootProject.extra("0.4.0")
|
2021-03-08 22:58:28 +03:00
|
|
|
val kmathVersion: String by rootProject.extra
|
2021-01-29 19:23:16 +03:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":numass-data-proto"))
|
2021-05-16 22:41:21 +03:00
|
|
|
implementation(project(":numass-model"))
|
2021-11-23 14:08:31 +03:00
|
|
|
implementation(project(":numass-analysis"))
|
2021-03-08 22:58:28 +03:00
|
|
|
implementation("space.kscience:dataforge-workspace:$dataforgeVersion")
|
|
|
|
implementation("space.kscience:plotlykt-core:$plotlyVersion")
|
|
|
|
implementation("space.kscience:kmath-histograms:$kmathVersion")
|
|
|
|
implementation("space.kscience:kmath-for-real:$kmathVersion")
|
2021-01-29 19:23:16 +03:00
|
|
|
}
|