2021-05-29 13:45:33 +03:00
|
|
|
//
|
|
|
|
//plugins {
|
|
|
|
// id 'application'
|
|
|
|
// id 'org.openjfx.javafxplugin' version '0.0.5'
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//javafx {
|
|
|
|
// modules = [ 'javafx.controls' ]
|
|
|
|
//}
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id 'application'
|
|
|
|
}
|
|
|
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
|
|
|
if (!hasProperty('mainClass')) {
|
|
|
|
ext.mainClass = 'inr.numass.control.gun.EGunApplication'
|
|
|
|
}
|
|
|
|
mainClassName = mainClass
|
|
|
|
|
|
|
|
dependencies {
|
2021-11-13 13:30:39 +03:00
|
|
|
api project(':numass-control')
|
2021-05-29 13:45:33 +03:00
|
|
|
}
|