25 lines
581 B
Groovy
25 lines
581 B
Groovy
apply plugin: 'application'
|
|
|
|
if (!hasProperty('mainClass')) {
|
|
ext.mainClass = 'inr.numass.viewer.Viewer'
|
|
}
|
|
mainClassName = mainClass
|
|
|
|
version = "0.3.2"
|
|
|
|
description = "The viewer for numass data"
|
|
|
|
configurations {
|
|
compile.exclude module: 'groovy-all'
|
|
compile.exclude module: 'fontawesomefx'
|
|
compile.exclude module: 'commons-math3'
|
|
compile.exclude module: 'httpclient'
|
|
compile.exclude module: 'httpcore'
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':numass-main')
|
|
compile project(':dataforge-fx')
|
|
compile 'com.jcraft:jsch:0.1.53'
|
|
}
|