2019-06-28 16:28:54 +03:00
|
|
|
plugins {
|
|
|
|
id("scientifik.mpp") apply false
|
|
|
|
id("scientifik.publish") apply false
|
|
|
|
}
|
|
|
|
|
2019-07-05 18:49:36 +03:00
|
|
|
val dataforgeVersion by extra("0.1.3-dev-9")
|
2019-06-28 10:19:58 +03:00
|
|
|
|
|
|
|
val bintrayRepo by extra("dataforge")
|
|
|
|
val vcs by extra("https://github.com/mipt-npm/dataforge-core")
|
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")) {
|
2019-06-22 14:29:37 +03:00
|
|
|
apply(plugin = "scientifik.publish")
|
2019-04-30 14:57:48 +03:00
|
|
|
}
|
2019-03-06 18:15:30 +03:00
|
|
|
}
|