numass-framework/numass-control/vac/build.gradle

22 lines
562 B
Groovy
Raw Normal View History

2015-12-18 16:20:47 +03:00
apply plugin: 'application'
version = "0.4.2"
2015-12-18 16:20:47 +03:00
if (!hasProperty('mainClass')) {
2016-04-14 12:45:41 +03:00
ext.mainClass = 'inr.numass.readvac.app.ReadVac'
2015-12-18 16:20:47 +03:00
}
mainClassName = mainClass
configurations {
compile.exclude module: 'groovy'
compile.exclude module: 'groovy-all'
compile.exclude module: 'shichimifx'
compile.exclude module: 'zt-zip'
}
2015-12-18 16:20:47 +03:00
dependencies {
2016-04-12 22:38:43 +03:00
compile project(':numass-storage:numass-client')
compile project(':dataforge-plots:plots-jfc')
2015-12-18 16:20:47 +03:00
compile project(':dataforge-control')
2016-05-28 21:09:56 +03:00
compile project(':dataforge-fx')
2015-12-18 16:20:47 +03:00
}