36 lines
966 B
Groovy
36 lines
966 B
Groovy
apply plugin: 'application'
|
|
|
|
if (!hasProperty('mainClass')) {
|
|
ext.mainClass = 'inr.numass.viewer.Viewer'
|
|
}
|
|
mainClassName = mainClass
|
|
|
|
version = "0.3.7 - SNAPSHOT"
|
|
|
|
description = "The viewer for numass data"
|
|
|
|
configurations {
|
|
compile.exclude module: 'groovy-all'
|
|
compile.exclude module: 'groovy'
|
|
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'
|
|
compile.exclude module: 'dataforge-grind'
|
|
compile.exclude module: 'grind-terminal'
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':numass-main')
|
|
compile project(':dataforge-plots:plots-jfc')
|
|
compile 'com.jcraft:jsch:0.1.54'
|
|
}
|
|
|
|
shadowJar {
|
|
baseName = 'numass-viewer'
|
|
classifier = null
|
|
version = null
|
|
} |