kmath/kmath-jafama/build.gradle.kts

28 lines
622 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"
}
2021-06-02 22:44:19 +03:00
}
kotlin.sourceSets.all {
languageSettings.optIn("space.kscience.kmath.misc.UnstableKMathAPI")
2021-06-02 22:44:19 +03:00
}