numass-framework/numass-viewer/build.gradle

26 lines
497 B
Groovy
Raw Normal View History

2017-12-11 14:14:59 +03:00
apply plugin: 'application'
2017-09-21 20:13:05 +03:00
apply plugin: 'kotlin'
2017-05-13 21:46:12 +03:00
repositories {
mavenCentral()
}
2015-12-18 16:20:47 +03:00
if (!hasProperty('mainClass')) {
2017-04-16 23:19:06 +03:00
ext.mainClass = 'inr.numass.viewer.Viewer'//"inr.numass.viewer.test.TestApp"
2015-12-18 16:20:47 +03:00
}
2017-05-13 21:46:12 +03:00
2015-12-18 16:20:47 +03:00
mainClassName = mainClass
2017-10-30 14:53:39 +03:00
version = "0.5.0"
2015-12-18 16:20:47 +03:00
description = "The viewer for numass data"
2016-05-06 22:58:12 +03:00
2015-12-18 16:20:47 +03:00
dependencies {
2017-04-15 22:15:53 +03:00
compile project(':numass-core')
compile "hep.dataforge:plots-jfc" //project(':dataforge-plots:plots-jfc')
2017-11-09 15:09:19 +03:00
compile "hep.dataforge:dataforge-gui"
2015-12-18 16:20:47 +03:00
}
2017-04-29 11:22:22 +03:00