26 lines
497 B
Groovy
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.4"
|
|
|
|
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"
|
|
}
|
|
|