2024-02-19 19:47:40 +03:00
|
|
|
import space.kscience.gradle.useApache2Licence
|
|
|
|
import space.kscience.gradle.useSPCTeam
|
2023-11-04 12:59:06 +03:00
|
|
|
|
2022-06-30 20:51:01 +03:00
|
|
|
plugins {
|
2022-09-03 11:54:34 +03:00
|
|
|
id("space.kscience.gradle.project")
|
2022-06-30 20:51:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
group = "space.kscience"
|
2023-11-27 10:00:55 +03:00
|
|
|
version = "0.2.0-dev-1"
|
2022-06-30 20:51:01 +03:00
|
|
|
|
2023-03-13 16:24:50 +03:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
mavenLocal()
|
2022-06-30 20:51:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-19 19:47:40 +03:00
|
|
|
val dataforgeVersion by extra("0.8.0")
|
2022-07-03 16:39:43 +03:00
|
|
|
|
2022-09-03 11:54:34 +03:00
|
|
|
ksciencePublish {
|
2023-11-04 12:59:06 +03:00
|
|
|
pom("https://github.com/SciProgCentre/snark") {
|
|
|
|
useApache2Licence()
|
|
|
|
useSPCTeam()
|
|
|
|
}
|
|
|
|
repository("spc","https://maven.sciprog.center/kscience")
|
2022-07-03 16:39:43 +03:00
|
|
|
// sonatype()
|
|
|
|
}
|