2021-01-29 19:23:16 +03:00
|
|
|
plugins {
|
2023-01-24 12:08:29 +03:00
|
|
|
id("space.kscience.gradle.jvm")
|
2021-12-21 13:29:48 +03:00
|
|
|
id("com.github.johnrengelman.shadow") version "7.1.1"
|
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
|
2022-02-20 17:26:01 +03:00
|
|
|
val plotlyVersion: String by rootProject.extra("0.5.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 {
|
2021-12-18 23:08:03 +03:00
|
|
|
implementation(projects.numassDataProto)
|
|
|
|
implementation(projects.numassModel)
|
|
|
|
implementation(projects.numassAnalysis)
|
2021-03-08 22:58:28 +03:00
|
|
|
implementation("space.kscience:dataforge-workspace:$dataforgeVersion")
|
2021-12-18 23:08:03 +03:00
|
|
|
implementation("space.kscience:plotlykt-jupyter:$plotlyVersion")
|
|
|
|
implementation("space.kscience:kmath-jupyter:$kmathVersion")
|
2021-12-21 13:29:48 +03:00
|
|
|
implementation("space.kscience:tables-kt:$tablesVersion")
|
2023-01-24 12:08:29 +03:00
|
|
|
// implementation(platform("com.google.cloud:libraries-bom:23.0.0"))
|
|
|
|
// implementation("com.google.cloud:google-cloud-nio:0.123.10")
|
|
|
|
// implementation("com.google.auth:google-auth-library-oauth2-http:1.3.0")
|
2021-12-18 23:08:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kscience{
|
|
|
|
jupyterLibrary("ru.inr.mass.notebook.NumassJupyter")
|
2021-01-29 19:23:16 +03:00
|
|
|
}
|