kmath/settings.gradle.kts

51 lines
1023 B
Plaintext
Raw Permalink Normal View History

rootProject.name = "kmath"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
2022-06-12 15:16:40 +03:00
dependencyResolutionManagement {
val toolsVersion: String by extra
repositories {
mavenLocal()
maven("https://repo.kotlin.link")
mavenCentral()
gradlePluginPortal()
}
versionCatalogs {
create("spclibs") {
2022-07-29 15:58:02 +03:00
from("space.kscience:version-catalog:$toolsVersion")
2022-06-12 15:16:40 +03:00
}
}
}
include(
2022-06-14 16:27:32 +03:00
":test-utils",
":attributes-kt",
2019-02-20 12:54:39 +03:00
":kmath-memory",
":kmath-complex",
2019-01-04 18:12:28 +03:00
":kmath-core",
":kmath-coroutines",
":kmath-functions",
2019-02-13 18:21:51 +03:00
":kmath-histograms",
":kmath-commons",
2019-12-08 15:48:25 +03:00
":kmath-viktor",
2021-10-17 13:52:40 +03:00
":kmath-multik",
2021-10-20 16:06:45 +03:00
":kmath-tensorflow",
2021-08-16 09:55:03 +03:00
":kmath-optimization",
2020-10-28 09:16:21 +03:00
":kmath-stat",
":kmath-nd4j",
2019-06-21 12:34:04 +03:00
":kmath-dimensions",
":kmath-for-real",
2020-04-29 19:28:24 +03:00
":kmath-geometry",
2020-06-12 10:40:59 +03:00
":kmath-ast",
":kmath-ejml",
":kmath-kotlingrad",
2021-03-31 11:07:45 +03:00
":kmath-tensors",
2021-03-31 15:39:34 +03:00
":kmath-jupyter",
":kmath-symja",
2021-06-02 22:44:19 +03:00
":kmath-jafama",
2021-04-16 22:43:10 +03:00
":examples",
":benchmarks",
2022-07-15 19:13:50 +03:00
)