2021-05-29 13:45:33 +03:00
|
|
|
plugins{
|
|
|
|
id "application"
|
2021-11-13 13:30:39 +03:00
|
|
|
id "com.github.johnrengelman.shadow"
|
2021-11-15 11:18:00 +03:00
|
|
|
id "org.openjfx.javafxplugin"
|
2021-05-29 13:45:33 +03:00
|
|
|
}
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
2021-11-15 11:18:00 +03:00
|
|
|
javafx {
|
|
|
|
modules = ["javafx.controls", "javafx.web"]
|
|
|
|
version = "11"
|
|
|
|
}
|
|
|
|
|
2021-05-29 13:45:33 +03:00
|
|
|
if (!hasProperty('mainClass')) {
|
|
|
|
ext.mainClass = 'hep.dataforge.plots.demo.DemoApp'//"inr.numass.viewer.test.TestApp"
|
|
|
|
}
|
|
|
|
|
|
|
|
mainClassName = mainClass
|
|
|
|
|
|
|
|
description = "A demonstration for plots capabilities"
|
|
|
|
|
|
|
|
dependencies {
|
2021-11-13 13:30:39 +03:00
|
|
|
api project(':dataforge-plots:plots-jfc')
|
|
|
|
api project(':dataforge-gui')
|
2021-05-29 13:45:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|