34 lines
613 B
Groovy
34 lines
613 B
Groovy
plugins{
|
|
id "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.0"
|
|
|
|
description = "The viewer for numass data"
|
|
|
|
compileKotlin.kotlinOptions.jvmTarget = "1.8"
|
|
|
|
dependencies {
|
|
compile project(':numass-core')
|
|
compile "hep.dataforge:plots-jfc" //project(':dataforge-plots:plots-jfc')
|
|
compile "hep.dataforge:kodex-fx"
|
|
compile 'com.jcraft:jsch:0.1.54'
|
|
}
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|