2015-12-18 16:20:47 +03:00
|
|
|
apply plugin: 'application'
|
|
|
|
|
|
|
|
if (!hasProperty('mainClass')) {
|
|
|
|
ext.mainClass = 'inr.numass.viewer.Viewer'
|
|
|
|
}
|
|
|
|
mainClassName = mainClass
|
|
|
|
|
2017-03-21 20:32:02 +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 {
|
2016-11-19 10:25:29 +03:00
|
|
|
compile.exclude module: 'groovy-all'
|
2016-05-29 19:44:02 +03:00
|
|
|
compile.exclude module: 'groovy'
|
2016-05-06 22:58:12 +03:00
|
|
|
compile.exclude module: 'fontawesomefx'
|
|
|
|
compile.exclude module: 'httpclient'
|
|
|
|
compile.exclude module: 'httpcore'
|
2016-05-29 19:44:02 +03:00
|
|
|
compile.exclude module: 'shichimifx'
|
|
|
|
compile.exclude module: 'commons-math3'
|
|
|
|
compile.exclude module: 'dataforge-fitting'
|
|
|
|
compile.exclude module: 'dataforge-minuit'
|
2017-02-07 19:50:36 +03:00
|
|
|
compile.exclude module: 'dataforge-grind'
|
|
|
|
compile.exclude module: 'grind-terminal'
|
2016-05-06 22:58:12 +03:00
|
|
|
}
|
|
|
|
|
2015-12-18 16:20:47 +03:00
|
|
|
dependencies {
|
|
|
|
compile project(':numass-main')
|
2017-04-05 22:07:43 +03:00
|
|
|
compile "hep.dataforge:plots-jfc" //project(':dataforge-plots:plots-jfc')
|
2017-02-07 19:50:36 +03:00
|
|
|
compile 'com.jcraft:jsch:0.1.54'
|
2015-12-18 16:20:47 +03:00
|
|
|
}
|
2017-02-07 16:21:07 +03:00
|
|
|
|
2017-04-05 22:07:43 +03:00
|
|
|
//shadowJar {
|
|
|
|
// baseName = 'numass-viewer'
|
|
|
|
// classifier = null
|
|
|
|
// version = null
|
|
|
|
//}
|