2019-07-17 14:21:37 +03:00
|
|
|
plugins {
|
2020-09-20 22:25:50 +03:00
|
|
|
id("ru.mipt.npm.base")
|
2020-09-14 22:48:02 +03:00
|
|
|
id("org.jetbrains.changelog") version "0.4.0"
|
2019-07-17 14:21:37 +03:00
|
|
|
}
|
|
|
|
|
2020-09-23 17:15:54 +03:00
|
|
|
val kmathVersion: String by extra("0.2.0-dev-1")
|
|
|
|
val bintrayRepo: String by extra("kscience")
|
|
|
|
val githubProject: String by extra("kmath")
|
2018-11-20 22:09:07 +03:00
|
|
|
|
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()
|
2019-07-17 14:21:37 +03:00
|
|
|
maven("https://dl.bintray.com/kotlin/kotlinx")
|
2020-07-26 07:17:47 +03:00
|
|
|
maven("https://dl.bintray.com/hotkeytlt/maven")
|
2018-12-24 15:19:35 +03:00
|
|
|
}
|
2019-06-08 16:25:51 +03:00
|
|
|
|
2020-09-12 14:59:12 +03:00
|
|
|
group = "kscience.kmath"
|
2019-04-07 09:18:06 +03:00
|
|
|
version = kmathVersion
|
|
|
|
}
|
2019-01-31 18:19:02 +03:00
|
|
|
|
2020-09-08 12:40:47 +03:00
|
|
|
subprojects { if (name.startsWith("kmath")) apply(plugin = "ru.mipt.npm.publish") }
|