kmath/kmath-jafama/build.gradle.kts

23 lines
521 B
Plaintext
Raw Normal View History

2021-06-02 22:44:19 +03:00
plugins {
2022-07-29 15:58:02 +03:00
id("space.kscience.gradle.jvm")
2021-06-02 22:44:19 +03:00
}
description = "Jafama integration module"
2021-06-02 22:44:19 +03:00
dependencies {
2021-06-02 23:07:23 +03:00
api(project(":kmath-core"))
api("net.jafama:jafama:2.3.2")
2021-06-02 22:44:19 +03:00
}
2021-06-02 23:07:23 +03:00
repositories {
mavenCentral()
2021-06-02 22:44:19 +03:00
}
readme {
2022-07-29 15:58:02 +03:00
maturity = space.kscience.gradle.Maturity.PROTOTYPE
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
feature("jafama-double", "src/main/kotlin/space/kscience/kmath/jafama/") {
"Double ExtendedField implementations based on Jafama"
}
2023-05-12 20:57:55 +03:00
}