22 lines
562 B
Groovy
22 lines
562 B
Groovy
apply plugin: 'application'
|
|
|
|
version = "0.4.2"
|
|
|
|
if (!hasProperty('mainClass')) {
|
|
ext.mainClass = 'inr.numass.readvac.app.ReadVac'
|
|
}
|
|
mainClassName = mainClass
|
|
|
|
configurations {
|
|
compile.exclude module: 'groovy'
|
|
compile.exclude module: 'groovy-all'
|
|
compile.exclude module: 'shichimifx'
|
|
compile.exclude module: 'zt-zip'
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':numass-storage:numass-client')
|
|
compile project(':dataforge-plots:plots-jfc')
|
|
compile project(':dataforge-control')
|
|
compile project(':dataforge-fx')
|
|
} |