2020-09-20 12:40:07 +03:00
|
|
|
plugins {
|
2024-08-18 22:45:33 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
2020-09-20 12:40:07 +03:00
|
|
|
}
|
2020-09-09 19:42:43 +03:00
|
|
|
|
2024-02-17 21:32:26 +03:00
|
|
|
val ejmlVerision = "0.43.1"
|
|
|
|
|
2024-08-18 22:45:33 +03:00
|
|
|
kscience {
|
|
|
|
jvm()
|
|
|
|
jvmMain {
|
|
|
|
api(projects.kmathCore)
|
|
|
|
api(projects.kmathComplex)
|
|
|
|
api("org.ejml:ejml-all:$ejmlVerision")
|
|
|
|
}
|
|
|
|
|
|
|
|
jvmTest {
|
|
|
|
implementation(projects.testUtils)
|
|
|
|
}
|
2020-09-09 19:42:43 +03:00
|
|
|
}
|
2021-01-30 20:23:15 +03:00
|
|
|
|
2021-03-16 20:56:20 +03:00
|
|
|
readme {
|
2022-07-29 15:58:02 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.PROTOTYPE
|
2021-03-17 19:11:26 +03:00
|
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
|
|
|
|
|
|
|
feature(
|
|
|
|
id = "ejml-vector",
|
|
|
|
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlVector.kt"
|
2021-05-14 22:23:28 +03:00
|
|
|
) { "Point implementations." }
|
2021-03-17 19:11:26 +03:00
|
|
|
|
|
|
|
feature(
|
|
|
|
id = "ejml-matrix",
|
|
|
|
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlMatrix.kt"
|
2021-05-14 22:23:28 +03:00
|
|
|
) { "Matrix implementation." }
|
2021-03-17 19:11:26 +03:00
|
|
|
|
|
|
|
feature(
|
|
|
|
id = "ejml-linear-space",
|
|
|
|
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlLinearSpace.kt"
|
2021-05-14 22:23:28 +03:00
|
|
|
) { "LinearSpace implementations." }
|
2024-08-18 22:45:33 +03:00
|
|
|
}
|