2019-01-09 19:10:47 +03:00
|
|
|
//
|
|
|
|
//plugins {
|
|
|
|
// id 'application'
|
|
|
|
// id 'org.openjfx.javafxplugin' version '0.0.5'
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//javafx {
|
|
|
|
// modules = [ 'javafx.controls' ]
|
|
|
|
//}
|
2018-11-26 13:07:12 +03:00
|
|
|
|
2018-11-29 22:18:36 +03:00
|
|
|
plugins {
|
|
|
|
id 'application'
|
|
|
|
}
|
2018-11-26 13:07:12 +03:00
|
|
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
|
|
|
if (!hasProperty('mainClass')) {
|
2018-11-29 16:04:09 +03:00
|
|
|
ext.mainClass = 'inr.numass.control.gun.EGunApplication'
|
2018-11-26 13:07:12 +03:00
|
|
|
}
|
|
|
|
mainClassName = mainClass
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':numass-control')
|
|
|
|
}
|