numass-framework/numass-viewer/build.gradle

36 lines
728 B
Groovy
Raw Normal View History

2017-04-15 22:15:53 +03:00
plugins{
2017-06-27 16:24:02 +03:00
id "org.jetbrains.kotlin.jvm" version '1.1.3'
2017-04-15 22:15:53 +03:00
id "application"
}
2015-12-18 16:20:47 +03:00
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-04-17 23:00:10 +03:00
version = "0.4.0"
2015-12-18 16:20:47 +03:00
description = "The viewer for numass data"
2017-04-15 22:15:53 +03:00
compileKotlin.kotlinOptions.jvmTarget = "1.8"
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')
compile "hep.dataforge:kodex"
2017-02-07 19:50:36 +03:00
compile 'com.jcraft:jsch:0.1.54'
2017-04-15 22:15:53 +03:00
2017-04-17 23:00:10 +03:00
compile 'org.controlsfx:controlsfx:8.40.12'
2017-06-27 16:24:02 +03:00
compile "no.tornado:tornadofx:1.7.8"
2015-12-18 16:20:47 +03:00
}
2017-04-29 11:22:22 +03:00
2017-05-17 22:55:17 +03:00
apply plugin: 'kotlin'
2017-05-13 21:46:12 +03:00