2021-11-15 11:18:00 +03:00
|
|
|
plugins {
|
|
|
|
id("org.openjfx.javafxplugin")
|
|
|
|
}
|
|
|
|
|
|
|
|
javafx {
|
|
|
|
modules = listOf("javafx.controls")
|
2023-11-08 16:15:36 +03:00
|
|
|
version = "16"
|
2021-11-15 11:18:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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"))
|
|
|
|
}
|