numass-framework/numass-viewer/build.gradle
2018-08-29 20:23:47 +03:00

26 lines
497 B
Groovy

apply plugin: 'application'
apply plugin: 'kotlin'
repositories {
mavenCentral()
}
if (!hasProperty('mainClass')) {
ext.mainClass = 'inr.numass.viewer.Viewer'//"inr.numass.viewer.test.TestApp"
}
mainClassName = mainClass
version = "0.5.6"
description = "The viewer for numass data"
dependencies {
compile project(':numass-core')
compile "hep.dataforge:plots-jfc" //project(':dataforge-plots:plots-jfc')
compile "hep.dataforge:dataforge-gui"
}