dataforge-core/build.gradle.kts

18 lines
366 B
Plaintext
Raw Normal View History

2019-04-30 18:29:05 +03:00
val dataforgeVersion by extra("0.1.2-dev-6")
2018-12-11 18:49:08 +03:00
allprojects {
repositories {
jcenter()
maven("https://kotlin.bintray.com/kotlinx")
}
group = "hep.dataforge"
2019-04-30 14:57:48 +03:00
version = dataforgeVersion
2019-04-30 14:28:45 +03:00
}
2019-01-27 17:12:46 +03:00
2019-04-30 14:28:45 +03:00
subprojects {
2019-04-30 14:57:48 +03:00
if (name.startsWith("dataforge")) {
apply(plugin = "bintray-config")
apply(plugin = "artifactory-config")
}
2019-03-06 18:15:30 +03:00
}