kmath/kmath-jafama/build.gradle.kts

28 lines
636 B
Plaintext
Raw Normal View History

2021-06-03 01:14:19 +05:30
plugins {
id("ru.mipt.npm.gradle.jvm")
}
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
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")
}