2021-06-02 22:44:19 +03:00
|
|
|
plugins {
|
|
|
|
id("ru.mipt.npm.gradle.jvm")
|
|
|
|
}
|
|
|
|
|
2021-06-14 17:51:06 +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 {
|
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
2021-06-14 17:51:06 +03: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"
|
|
|
|
}
|
2021-06-02 22:44:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin.sourceSets.all {
|
|
|
|
languageSettings.useExperimentalAnnotation("space.kscience.kmath.misc.UnstableKMathAPI")
|
|
|
|
}
|