forked from kscience/kmath
69 lines
1.8 KiB
Plaintext
69 lines
1.8 KiB
Plaintext
/*
|
|
* Copyright 2018-2021 KMath contributors.
|
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
|
*/
|
|
|
|
import org.jetbrains.dokka.gradle.DokkaTask
|
|
import java.net.URL
|
|
|
|
plugins {
|
|
id("ru.mipt.npm.gradle.project")
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
maven("https://clojars.org/repo")
|
|
maven("https://dl.bintray.com/egor-bogomolov/astminer/")
|
|
maven("https://dl.bintray.com/hotkeytlt/maven")
|
|
maven("https://jitpack.io")
|
|
maven{
|
|
setUrl("http://logicrunch.research.it.uu.se/maven/")
|
|
isAllowInsecureProtocol = true
|
|
}
|
|
mavenCentral()
|
|
}
|
|
|
|
group = "space.kscience"
|
|
version = "0.3.0-dev-7"
|
|
}
|
|
|
|
subprojects {
|
|
if (name.startsWith("kmath")) apply<MavenPublishPlugin>()
|
|
|
|
afterEvaluate {
|
|
tasks.withType<DokkaTask> {
|
|
dokkaSourceSets.all {
|
|
val readmeFile = File(this@subprojects.projectDir, "./README.md")
|
|
if (readmeFile.exists())
|
|
includes.setFrom(includes + readmeFile.absolutePath)
|
|
|
|
arrayOf(
|
|
"http://ejml.org/javadoc/",
|
|
"https://commons.apache.org/proper/commons-math/javadocs/api-3.6.1/",
|
|
"https://deeplearning4j.org/api/latest/"
|
|
).map { URL("${it}package-list") to URL(it) }.forEach { (a, b) ->
|
|
externalDocumentationLink {
|
|
packageListUrl.set(a)
|
|
url.set(b)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
readme {
|
|
readmeTemplate = file("docs/templates/README-TEMPLATE.md")
|
|
}
|
|
|
|
ksciencePublish {
|
|
github("kmath")
|
|
space()
|
|
sonatype()
|
|
}
|
|
|
|
apiValidation {
|
|
nonPublicMarkers.add("space.kscience.kmath.misc.UnstableKMathAPI")
|
|
}
|