kmath/build.gradle.kts

40 lines
1.1 KiB
Plaintext
Raw Normal View History

import ru.mipt.npm.gradle.KSciencePublishPlugin
plugins {
2020-09-25 10:13:38 +03:00
id("ru.mipt.npm.project")
}
internal val kmathVersion: String by extra("0.2.0-dev-7")
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://clojars.org/repo")
maven("https://dl.bintray.com/egor-bogomolov/astminer/")
maven("https://dl.bintray.com/hotkeytlt/maven")
2020-09-27 19:57:30 +03:00
maven("https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://dl.bintray.com/kotlin/kotlinx")
maven("https://dl.bintray.com/mipt-npm/dev")
maven("https://dl.bintray.com/mipt-npm/kscience")
maven("https://jitpack.io")
maven("http://logicrunch.research.it.uu.se/maven/")
mavenCentral()
2018-12-24 15:19:35 +03:00
}
2019-06-08 16:25:51 +03:00
2021-02-18 11:17:28 +03:00
group = "space.kscience"
2019-04-07 09:18:06 +03:00
version = kmathVersion
}
2019-01-31 18:19:02 +03:00
2020-09-21 15:47:47 +03:00
subprojects {
if (name.startsWith("kmath")) apply<KSciencePublishPlugin>()
2020-09-21 15:47:47 +03:00
}
readme {
2020-09-26 12:15:11 +03:00
readmeTemplate = file("docs/templates/README-TEMPLATE.md")
}
2020-10-19 22:51:33 +03:00
2020-12-22 18:15:24 +03:00
ksciencePublish {
spaceRepo = "https://maven.pkg.jetbrains.space/mipt-npm/p/sci/maven"
2021-02-18 11:17:28 +03:00
bintrayRepo = "kscience"
githubProject = "kmath"
2021-02-04 11:00:08 +03:00
}