kmath/kmath-ejml/build.gradle.kts

34 lines
894 B
Plaintext
Raw Normal View History

2021-03-17 19:11:26 +03:00
import ru.mipt.npm.gradle.Maturity
2020-09-20 12:40:07 +03:00
plugins {
2021-02-21 16:13:40 +03:00
id("ru.mipt.npm.gradle.jvm")
2020-09-20 12:40:07 +03:00
}
dependencies {
2021-03-17 19:11:26 +03:00
api("org.ejml:ejml-simple:0.40")
api(project(":kmath-core"))
}
2021-01-30 20:23:15 +03:00
2021-03-16 20:56:20 +03:00
readme {
2021-03-17 19:11:26 +03:00
maturity = Maturity.PROTOTYPE
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
feature(
id = "ejml-vector",
description = "The Point implementation using SimpleMatrix.",
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlVector.kt"
)
feature(
id = "ejml-matrix",
description = "The Matrix implementation using SimpleMatrix.",
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlMatrix.kt"
)
feature(
id = "ejml-linear-space",
description = "The LinearSpace implementation using SimpleMatrix.",
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlLinearSpace.kt"
)
}