numass-framework/numass-viewer/build.gradle

34 lines
613 B
Groovy
Raw Normal View History

2017-04-15 22:15:53 +03:00
plugins{
id "application"
}
2015-12-18 16:20:47 +03:00
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"
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')
2017-10-12 22:05:54 +03:00
compile "hep.dataforge:kodex-fx"
2017-02-07 19:50:36 +03:00
compile 'com.jcraft:jsch:0.1.54'
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