2021-06-03 01:14:19 +05:30
|
|
|
plugins {
|
2022-07-29 15:58:02 +03:00
|
|
|
id("space.kscience.gradle.jvm")
|
2021-06-03 01:14:19 +05:30
|
|
|
}
|
|
|
|
|
2021-06-14 21:51:06 +07:00
|
|
|
description = "Jafama integration module"
|
|
|
|
|
2021-06-03 01:14:19 +05:30
|
|
|
dependencies {
|
2021-06-03 01:37:23 +05:30
|
|
|
api(project(":kmath-core"))
|
|
|
|
api("net.jafama:jafama:2.3.2")
|
2021-06-03 01:14:19 +05:30
|
|
|
}
|
|
|
|
|
2021-06-03 01:37:23 +05:30
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2021-06-03 01:14:19 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
readme {
|
2023-11-18 22:29:59 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.DEPRECATED
|
2021-06-14 21:51:06 +07:00
|
|
|
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
|
|
|
}
|