2017-04-15 22:15:53 +03:00
|
|
|
plugins{
|
2017-04-29 11:22:22 +03:00
|
|
|
id "org.jetbrains.kotlin.jvm" version '1.1.2-2'
|
2017-04-15 22:15:53 +03:00
|
|
|
id "application"
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
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')
|
2017-04-05 22:07:43 +03:00
|
|
|
compile "hep.dataforge:plots-jfc" //project(':dataforge-plots:plots-jfc')
|
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-04-29 11:22:22 +03:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:'1.1.2-2"
|
2017-04-15 22:15:53 +03:00
|
|
|
compile "no.tornado:tornadofx:1.7.1"
|
2015-12-18 16:20:47 +03:00
|
|
|
}
|
2017-04-29 11:22:22 +03:00
|
|
|
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|