Add space properties

This commit is contained in:
Iaroslav Postovalov 2020-10-13 22:00:01 +07:00
parent 245adab719
commit 9da3b139db
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7

View File

@ -1,17 +1,20 @@
import ru.mipt.npm.gradle.KSciencePublishPlugin
plugins { plugins {
id("ru.mipt.npm.project") id("ru.mipt.npm.project")
id("ru.mipt.npm.publish") apply false
} }
val kmathVersion: String by extra("0.2.0-dev-2") private val kmathVersion: String by extra("0.2.0-dev-2")
val bintrayRepo: String by extra("kscience") private val bintrayRepo: String by extra("kscience")
val githubProject: String by extra("kmath") private val githubProject: String by extra("kmath")
allprojects { allprojects {
repositories { repositories {
jcenter() jcenter()
maven("https://dl.bintray.com/kotlin/kotlin-eap") maven(url = "https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://dl.bintray.com/kotlin/kotlinx") maven(url = "https://dl.bintray.com/kotlin/kotlinx")
maven("https://dl.bintray.com/hotkeytlt/maven") maven(url = "https://dl.bintray.com/hotkeytlt/maven")
} }
group = "kscience.kmath" group = "kscience.kmath"
@ -19,7 +22,13 @@ allprojects {
} }
subprojects { subprojects {
if (name.startsWith("kmath")) apply<ru.mipt.npm.gradle.KSciencePublishPlugin>() if (name.startsWith("kmath")) apply<KSciencePublishPlugin>()
ksciencePublish {
spaceRepo = "https://maven.pkg.jetbrains.space/mipt-npm/p/sci/maven"
spaceUser = System.getenv("SPACE_USER")
spaceToken = System.getenv("SPACE_TOKEN")
}
} }
readme { readme {