kmath/build.gradle.kts
Iaroslav Postovalov acca495720
Merge remote-tracking branch 'origin/dev' into nd4j
# Conflicts:
#	build.gradle.kts
2020-07-29 23:46:11 +07:00

26 lines
521 B
Plaintext

plugins {
id("scientifik.publish") apply false
}
val kmathVersion by extra("0.1.4-dev-8")
val bintrayRepo by extra("scientifik")
val githubProject by extra("kmath")
allprojects {
repositories {
jcenter()
maven("https://dl.bintray.com/kotlin/kotlinx")
mavenCentral()
maven("https://dl.bintray.com/hotkeytlt/maven")
}
group = "scientifik"
version = kmathVersion
}
subprojects {
if (name.startsWith("kmath")) {
apply(plugin = "scientifik.publish")
}
}