numass-framework/numass-viewer/build.gradle

29 lines
758 B
Groovy
Raw Normal View History

2015-12-18 16:20:47 +03:00
apply plugin: 'application'
if (!hasProperty('mainClass')) {
ext.mainClass = 'inr.numass.viewer.Viewer'
}
mainClassName = mainClass
2017-01-23 18:20:50 +03:00
version = "0.3.7"
2015-12-18 16:20:47 +03:00
description = "The viewer for numass data"
2016-05-06 22:58:12 +03:00
configurations {
compile.exclude module: 'groovy-all'
compile.exclude module: 'groovy'
2016-05-06 22:58:12 +03:00
compile.exclude module: 'fontawesomefx'
compile.exclude module: 'httpclient'
compile.exclude module: 'httpcore'
compile.exclude module: 'shichimifx'
compile.exclude module: 'commons-math3'
compile.exclude module: 'dataforge-fitting'
compile.exclude module: 'dataforge-minuit'
2016-05-06 22:58:12 +03:00
}
2015-12-18 16:20:47 +03:00
dependencies {
compile project(':numass-main')
compile project(':dataforge-fx')
compile 'com.jcraft:jsch:0.1.53'
}