18 lines
338 B
Plaintext
18 lines
338 B
Plaintext
|
plugins {
|
||
|
id("space.kscience.gradle.mpp")
|
||
|
kotlin("jupyter.api")
|
||
|
`maven-publish`
|
||
|
}
|
||
|
|
||
|
val dataforgeVersion: String by rootProject.extra
|
||
|
|
||
|
kscience{
|
||
|
jvm()
|
||
|
jvmMain{
|
||
|
api(projects.plotly.plotlyktCore)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tasks.processJupyterApiResources{
|
||
|
libraryProducers = listOf("space.kscience.plotly.PlotlyIntegration")
|
||
|
}
|