2015-12-18 16:20:47 +03:00
|
|
|
apply plugin: 'application'
|
|
|
|
|
|
|
|
if (!hasProperty('mainClass')) {
|
|
|
|
ext.mainClass = 'inr.numass.viewer.Viewer'
|
|
|
|
}
|
|
|
|
mainClassName = mainClass
|
|
|
|
|
2015-12-31 16:09:05 +03:00
|
|
|
version = "0.2.4"
|
2015-12-18 16:20:47 +03:00
|
|
|
|
|
|
|
description = "The viewer for numass data"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':numass-main')
|
|
|
|
compile project(':dataforge-storage')
|
|
|
|
compile project(':numass-storage')
|
|
|
|
compile project(':dataforge-fx')
|
|
|
|
compile 'com.jcraft:jsch:0.1.53'
|
|
|
|
}
|