visionforge/build.gradle.kts

20 lines
452 B
Plaintext
Raw Normal View History

val dataforgeVersion by extra("0.1.3-dev-5")
2019-03-08 11:55:01 +03:00
allprojects {
repositories {
mavenLocal()
2019-03-08 11:55:01 +03:00
jcenter()
maven("https://kotlin.bintray.com/kotlinx")
2019-05-28 17:59:56 +03:00
maven("http://npm.mipt.ru:8081/artifactory/gradle-dev-local")
2019-03-08 11:55:01 +03:00
}
group = "hep.dataforge"
2019-05-28 17:59:56 +03:00
version = dataforgeVersion
2019-03-08 11:55:01 +03:00
}
subprojects {
2019-05-28 17:59:56 +03:00
// apply(plugin = "dokka-publish")
// if (name.startsWith("dataforge")) {
// apply(plugin = "npm-publish")
2019-03-08 11:55:01 +03:00
// }
}