forked from kscience/kmath
51 lines
1.0 KiB
Plaintext
51 lines
1.0 KiB
Plaintext
rootProject.name = "kmath"
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
dependencyResolutionManagement {
|
|
val toolsVersion: String by extra
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
maven("https://repo.kotlin.link")
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
versionCatalogs {
|
|
create("spclibs") {
|
|
from("space.kscience:version-catalog:$toolsVersion")
|
|
}
|
|
}
|
|
}
|
|
|
|
include(
|
|
":test-utils",
|
|
":kmath-memory",
|
|
":kmath-complex",
|
|
":kmath-core",
|
|
":kmath-coroutines",
|
|
":kmath-functions",
|
|
":kmath-histograms",
|
|
":kmath-commons",
|
|
":kmath-viktor",
|
|
":kmath-multik",
|
|
":kmath-tensorflow",
|
|
":kmath-optimization",
|
|
":kmath-stat",
|
|
":kmath-nd4j",
|
|
":kmath-dimensions",
|
|
":kmath-for-real",
|
|
":kmath-geometry",
|
|
":kmath-ast",
|
|
":kmath-ejml",
|
|
":kmath-kotlingrad",
|
|
":kmath-tensors",
|
|
":kmath-jupyter",
|
|
":kmath-symja",
|
|
":kmath-jafama",
|
|
":kmath-trajectory",
|
|
":examples",
|
|
":benchmarks",
|
|
)
|