kmath/kmath-jafama/build.gradle.kts

29 lines
657 B
Plaintext
Raw Normal View History

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