numass-framework/dataforge-plots/plots-jfc/build.gradle.kts

19 lines
367 B
Plaintext
Raw Normal View History

2021-11-15 11:18:00 +03:00
plugins {
id("org.openjfx.javafxplugin")
}
javafx {
modules = listOf("javafx.controls")
version = "11"
}
description = "jFreeChart plugin"
dependencies {
2023-11-07 21:10:05 +03:00
api("org.jfree:org.jfree.svg:5.0.5")
2021-11-15 11:18:00 +03:00
// https://mvnrepository.com/artifact/org.jfree/org.jfree.chart.fx
2023-11-07 21:10:05 +03:00
api("org.jfree:org.jfree.chart.fx:2.0.1")
2021-11-15 11:18:00 +03:00
api(project(":dataforge-plots"))
}