numass-framework/numass-viewer/build.gradle
2018-04-14 21:50:57 +03:00

26 lines
508 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.1 - SNAPSHOT"
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"
}