20 lines
436 B
Plaintext
20 lines
436 B
Plaintext
plugins {
|
|
id("scientifik.mpp") version "0.1.6" apply false
|
|
id("scientifik.publish") version "0.1.6" apply false
|
|
}
|
|
|
|
val dataforgeVersion by extra("0.1.4-dev-1")
|
|
|
|
val bintrayRepo by extra("dataforge")
|
|
val githubProject by extra("dataforge-core")
|
|
|
|
allprojects {
|
|
group = "hep.dataforge"
|
|
version = dataforgeVersion
|
|
}
|
|
|
|
subprojects {
|
|
if (name.startsWith("dataforge")) {
|
|
apply(plugin = "scientifik.publish")
|
|
}
|
|
} |