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