kmath/kmath-jupyter/build.gradle.kts

27 lines
503 B
Plaintext
Raw Normal View History

2021-03-31 15:39:34 +03:00
plugins {
2022-07-29 15:58:02 +03:00
id("space.kscience.gradle.jvm")
2021-03-31 15:39:34 +03:00
kotlin("jupyter.api")
}
dependencies {
api(project(":kmath-ast"))
api(project(":kmath-complex"))
api(project(":kmath-for-real"))
2021-05-08 14:10:57 +03:00
}
kscience {
2021-05-08 14:10:57 +03:00
useHtml()
2021-03-31 15:39:34 +03:00
}
readme {
2022-07-29 15:58:02 +03:00
maturity = space.kscience.gradle.Maturity.PROTOTYPE
2021-03-31 15:39:34 +03:00
}
kotlin.sourceSets.all {
languageSettings.optIn("space.kscience.kmath.misc.UnstableKMathAPI")
2021-03-31 15:39:34 +03:00
}
2021-08-05 14:56:29 +03:00
tasks.processJupyterApiResources {
libraryProducers = listOf("space.kscience.kmath.jupyter.KMathJupyter")
}