dataforge-core/build.gradle.kts
2020-04-07 12:53:00 +03:00

25 lines
526 B
Plaintext

plugins {
val toolsVersion = "0.4.2"
id("scientifik.mpp") version toolsVersion apply false
id("scientifik.jvm") version toolsVersion apply false
id("scientifik.publish") version toolsVersion apply false
}
val dataforgeVersion by extra("0.1.7")
val bintrayRepo by extra("dataforge")
val githubProject by extra("dataforge-core")
allprojects {
group = "hep.dataforge"
version = dataforgeVersion
repositories {
mavenLocal()
}
}
subprojects {
apply(plugin = "scientifik.publish")
}