visionforge/visionforge-plotly/build.gradle.kts

17 lines
289 B
Plaintext
Raw Permalink Normal View History

2020-12-28 22:39:37 +03:00
plugins {
2022-08-12 22:16:06 +03:00
id("space.kscience.gradle.mpp")
2020-12-28 22:39:37 +03:00
}
2023-05-14 18:33:30 +03:00
val plotlyVersion = "0.5.3"
2021-02-16 14:49:15 +03:00
2021-05-05 15:28:06 +03:00
kscience {
2023-05-14 18:33:30 +03:00
jvm()
2021-05-05 15:28:06 +03:00
js {
binaries.library()
2021-01-12 12:52:22 +03:00
}
2023-05-14 18:33:30 +03:00
dependencies {
2023-05-29 09:53:56 +03:00
api(projects.visionforgeCore)
2023-05-14 18:33:30 +03:00
api("space.kscience:plotlykt-core:${plotlyVersion}")
2020-12-28 22:39:37 +03:00
}
2023-05-14 18:33:30 +03:00
useSerialization()
2020-12-28 22:39:37 +03:00
}