forked from kscience/kmath
22 lines
377 B
Plaintext
22 lines
377 B
Plaintext
|
plugins {
|
||
|
id("ru.mipt.npm.gradle.jvm")
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api(project(":kmath-ast"))
|
||
|
api(project(":kmath-complex"))
|
||
|
api(project(":kmath-for-real"))
|
||
|
}
|
||
|
|
||
|
kscience{
|
||
|
useHtml()
|
||
|
}
|
||
|
|
||
|
readme {
|
||
|
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
||
|
}
|
||
|
|
||
|
kotlin.sourceSets.all {
|
||
|
languageSettings.useExperimentalAnnotation("space.kscience.kmath.misc.UnstableKMathAPI")
|
||
|
}
|