kmath/build.gradle.kts

25 lines
544 B
Plaintext
Raw Normal View History

2020-09-19 19:19:33 +03:00
import ru.mipt.npm.gradle.KSciencePublishPlugin
plugins {
id("ru.mipt.npm.publish") apply false
}
val kmathVersion: String by extra("0.1.4")
val bintrayRepo: String by extra("scientifik")
val githubProject: String by extra("kmath")
2019-02-22 13:52:35 +03:00
allprojects {
2019-01-04 18:12:28 +03:00
repositories {
2018-12-24 15:19:35 +03:00
jcenter()
maven("https://dl.bintray.com/kotlin/kotlinx")
maven("https://dl.bintray.com/hotkeytlt/maven")
2018-12-24 15:19:35 +03:00
}
2019-06-08 16:25:51 +03:00
2019-04-07 09:18:06 +03:00
group = "scientifik"
version = kmathVersion
}
2019-01-31 18:19:02 +03:00
2019-04-07 09:18:06 +03:00
subprojects {
if (name.startsWith("kmath")) apply<KSciencePublishPlugin>()
}