forked from kscience/kmath
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
jcenter()
|
|
maven("https://dl.bintray.com/kotlin/kotlin-eap")
|
|
maven("https://dl.bintray.com/mipt-npm/kscience")
|
|
maven("https://dl.bintray.com/mipt-npm/dev")
|
|
maven("https://dl.bintray.com/kotlin/kotlinx")
|
|
}
|
|
|
|
val toolsVersion = "0.7.1"
|
|
val kotlinVersion = "1.4.21"
|
|
|
|
plugins {
|
|
id("kotlinx.benchmark") version "0.2.0-dev-20"
|
|
id("ru.mipt.npm.project") version toolsVersion
|
|
id("ru.mipt.npm.mpp") version toolsVersion
|
|
id("ru.mipt.npm.jvm") version toolsVersion
|
|
id("ru.mipt.npm.publish") version toolsVersion
|
|
kotlin("jvm") version kotlinVersion
|
|
kotlin("plugin.allopen") version kotlinVersion
|
|
}
|
|
}
|
|
|
|
rootProject.name = "kmath"
|
|
|
|
include(
|
|
":kmath-memory",
|
|
":kmath-core",
|
|
":kmath-functions",
|
|
":kmath-coroutines",
|
|
":kmath-histograms",
|
|
":kmath-commons",
|
|
":kmath-viktor",
|
|
":kmath-stat",
|
|
":kmath-nd4j",
|
|
":kmath-dimensions",
|
|
":kmath-for-real",
|
|
":kmath-geometry",
|
|
":kmath-ast",
|
|
":kmath-ejml",
|
|
":kmath-kotlingrad",
|
|
":examples"
|
|
)
|