forked from kscience/kmath
19 lines
337 B
Plaintext
19 lines
337 B
Plaintext
val kmathVersion by extra("0.1.2")
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
maven("https://kotlin.bintray.com/kotlinx")
|
|
}
|
|
|
|
group = "scientifik"
|
|
version = kmathVersion
|
|
}
|
|
|
|
subprojects {
|
|
apply(plugin = "dokka-publish")
|
|
if (name.startsWith("kmath")) {
|
|
apply(plugin = "npm-publish")
|
|
}
|
|
}
|