kmath/kmath-jupyter/build.gradle.kts
2021-07-30 01:32:48 +07:00

19 lines
408 B
Plaintext

plugins {
kotlin("jvm")
kotlin("jupyter.api")
id("ru.mipt.npm.gradle.common")
}
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")
}