kmath/kmath-jupyter/build.gradle.kts

23 lines
521 B
Plaintext
Raw Normal View History

2021-03-31 15:39:34 +03:00
plugins {
2021-03-16 19:17:54 +03:00
kotlin("jvm")
2021-03-31 15:39:34 +03:00
kotlin("jupyter.api")
2021-03-16 19:17:54 +03:00
id("ru.mipt.npm.gradle.common")
2021-03-31 15:39:34 +03:00
}
dependencies {
api(project(":kmath-ast"))
api(project(":kmath-complex"))
api(project(":kmath-for-real"))
2021-05-08 14:10:57 +03:00
}
2021-03-16 19:17:54 +03:00
kscience.useHtml()
readme.maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
2021-03-31 15:39:34 +03:00
kotlin.sourceSets.all {
languageSettings.useExperimentalAnnotation("space.kscience.kmath.misc.UnstableKMathAPI")
}
2021-08-05 14:56:29 +03:00
tasks.processJupyterApiResources {
libraryProducers = listOf("space.kscience.kmath.jupyter.KMathJupyter")
}