numass/build.gradle.kts

28 lines
616 B
Plaintext
Raw Normal View History

2021-01-19 13:24:24 +03:00
plugins {
id("space.kscience.gradle.project")
2021-01-19 13:24:24 +03:00
}
2021-01-27 22:20:20 +03:00
allprojects {
2021-11-27 22:03:10 +03:00
repositories {
2021-01-28 11:04:47 +03:00
mavenLocal()
2021-03-08 22:58:28 +03:00
maven("https://repo.kotlin.link")
maven("https://maven.pkg.jetbrains.space/spc/p/sci/dev")
2021-01-28 11:04:47 +03:00
}
2021-01-27 22:20:20 +03:00
group = "ru.inr.mass"
2022-04-09 16:54:44 +03:00
version = "0.1.3"
2021-01-27 22:20:20 +03:00
}
2021-01-19 13:24:24 +03:00
val dataforgeVersion by extra("0.6.0-dev-15")
val tablesVersion: String by extra("0.2.0-dev-3")
val kmathVersion by extra("0.3.1-dev-6")
val visionForgeVersion: String by rootProject.extra("0.3.0-dev-4")
2021-01-27 22:20:20 +03:00
ksciencePublish{
2021-03-08 22:58:28 +03:00
space("https://maven.pkg.jetbrains.space/mipt-npm/p/numass/maven")
}
apiValidation {
validationDisabled = true
2021-01-19 13:24:24 +03:00
}