snark/build.gradle.kts

26 lines
474 B
Plaintext
Raw Normal View History

2023-11-04 12:59:06 +03:00
import space.kscience.gradle.*
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"
version = "0.1.0-dev-1"
2023-03-13 16:24:50 +03:00
repositories {
mavenCentral()
mavenLocal()
2022-06-30 20:51:01 +03:00
}
}
2023-11-04 12:59:06 +03:00
val dataforgeVersion by extra("0.6.2")
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()
}