2021-11-15 11:18:00 +03:00
|
|
|
plugins{
|
|
|
|
id 'application'
|
|
|
|
id "org.openjfx.javafxplugin"
|
|
|
|
}
|
|
|
|
|
|
|
|
javafx {
|
|
|
|
modules = ["javafx.controls", "javafx.web"]
|
|
|
|
version = "11"
|
|
|
|
}
|
2021-05-29 13:45:33 +03:00
|
|
|
|
|
|
|
version = "0.6.0"
|
|
|
|
|
|
|
|
dependencies {
|
2021-11-13 13:30:39 +03:00
|
|
|
api project(':numass-control')
|
2021-05-29 13:45:33 +03:00
|
|
|
}
|
|
|
|
|
2021-05-29 19:18:28 +03:00
|
|
|
application{
|
|
|
|
mainClassName("inr.numass.control.readvac.ReadVac")
|
|
|
|
}
|
|
|
|
|
2021-05-29 13:45:33 +03:00
|
|
|
task testDevice(dependsOn: classes, type: JavaExec) {
|
2021-05-29 19:18:28 +03:00
|
|
|
main "inr.numass.control.readvac.ReadVac"
|
2021-05-29 13:45:33 +03:00
|
|
|
args = ["--config.resource=config-test/devices.xml"]
|
|
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
|
|
description "Start application in debug mode with default virtual port"
|
|
|
|
group "test"
|
|
|
|
}
|