numass/build.gradle.kts

35 lines
819 B
Plaintext
Raw Permalink 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-10-09 13:35:39 +03:00
version = "0.1.4-dev-2"
2021-01-27 22:20:20 +03:00
}
2021-01-19 13:24:24 +03:00
2023-10-09 13:35:39 +03:00
val dataforgeVersion by extra("0.6.2")
val tablesVersion: String by extra("0.2.0-dev-3")
2023-10-09 13:35:39 +03:00
val kmathVersion by extra("0.3.1")
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 {
2023-01-24 21:22:05 +03:00
pom("https://spc.jetbrains.space/p/numass/repositories/numass/") {
2023-01-24 12:08:29 +03:00
useApache2Licence()
useSPCTeam()
}
2023-01-24 21:22:05 +03:00
space("https://maven.pkg.jetbrains.space/spc/p/numass/maven")
}
apiValidation {
validationDisabled = true
2021-01-19 13:24:24 +03:00
}