numass/build.gradle.kts

36 lines
819 B
Plaintext
Raw Normal View History

import space.kscience.gradle.useApache2Licence
import space.kscience.gradle.useSPCTeam
2023-01-24 12:08:29 +03:00
2021-01-19 13:24:24 +03:00
plugins {
2023-01-24 12:08:29 +03:00
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"
2023-01-24 21:10:16 +03:00
version = "0.1.4-dev-1"
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-9")
2022-12-06 22:49:02 +03:00
val visionForgeVersion: String by rootProject.extra("0.3.0-dev-6")
2021-01-27 22:20:20 +03:00
2023-01-24 12:08:29 +03:00
ksciencePublish {
pom("https://github.com/SciProgCentre/kmath") {
useApache2Licence()
useSPCTeam()
}
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
}