2019-07-17 14:21:37 +03:00
|
|
|
plugins {
|
2021-02-21 16:13:40 +03:00
|
|
|
id("ru.mipt.npm.gradle.project")
|
2021-03-31 15:39:34 +03:00
|
|
|
kotlin("jupyter.api") apply false
|
2019-07-17 14:21:37 +03:00
|
|
|
}
|
|
|
|
|
2019-02-22 13:52:35 +03:00
|
|
|
allprojects {
|
2019-01-04 18:12:28 +03:00
|
|
|
repositories {
|
2020-10-29 21:09:11 +03:00
|
|
|
maven("https://clojars.org/repo")
|
2020-10-12 16:26:03 +03:00
|
|
|
maven("https://jitpack.io")
|
2021-04-28 14:03:28 +03:00
|
|
|
maven("http://logicrunch.research.it.uu.se/maven") {
|
2021-04-10 15:20:09 +03:00
|
|
|
isAllowInsecureProtocol = true
|
|
|
|
}
|
2021-05-20 19:32:56 +03:00
|
|
|
maven("https://oss.sonatype.org/content/repositories/snapshots")
|
2020-10-29 21:09:11 +03:00
|
|
|
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"
|
2021-05-23 20:01:07 +03:00
|
|
|
version = "0.3.0-dev-13"
|
2019-04-07 09:18:06 +03:00
|
|
|
}
|
2019-01-31 18:19:02 +03:00
|
|
|
|
2020-09-21 15:47:47 +03:00
|
|
|
subprojects {
|
2021-04-10 15:20:09 +03:00
|
|
|
if (name.startsWith("kmath")) apply<MavenPublishPlugin>()
|
2021-03-22 14:32:08 +03:00
|
|
|
|
|
|
|
afterEvaluate {
|
2021-04-28 14:03:28 +03:00
|
|
|
tasks.withType<org.jetbrains.dokka.gradle.DokkaTaskPartial> {
|
|
|
|
dependsOn(tasks.getByName("assemble"))
|
|
|
|
|
2021-03-22 14:32:08 +03:00
|
|
|
dokkaSourceSets.all {
|
2021-04-28 14:03:28 +03:00
|
|
|
val readmeFile = File(this@subprojects.projectDir, "README.md")
|
|
|
|
if (readmeFile.exists()) includes.setFrom(includes + readmeFile.absolutePath)
|
|
|
|
externalDocumentationLink("http://ejml.org/javadoc/")
|
|
|
|
externalDocumentationLink("https://commons.apache.org/proper/commons-math/javadocs/api-3.6.1/")
|
|
|
|
externalDocumentationLink("https://deeplearning4j.org/api/latest/")
|
|
|
|
externalDocumentationLink("https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/")
|
2021-03-22 14:32:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-21 15:47:47 +03:00
|
|
|
}
|
|
|
|
|
2020-09-27 23:10:24 +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 {
|
2021-03-08 21:03:48 +03:00
|
|
|
github("kmath")
|
|
|
|
space()
|
2021-03-10 18:02:04 +03:00
|
|
|
sonatype()
|
2021-02-21 16:13:40 +03:00
|
|
|
}
|
|
|
|
|
2021-02-28 13:06:47 +03:00
|
|
|
apiValidation {
|
2021-02-21 16:13:40 +03:00
|
|
|
nonPublicMarkers.add("space.kscience.kmath.misc.UnstableKMathAPI")
|
2021-02-28 13:06:47 +03:00
|
|
|
}
|