32 lines
751 B
Groovy
32 lines
751 B
Groovy
plugins{
|
|
id "org.jetbrains.kotlin.jvm" version '1.1.2-2'
|
|
id "application"
|
|
}
|
|
|
|
if (!hasProperty('mainClass')) {
|
|
ext.mainClass = 'inr.numass.viewer.Viewer'//"inr.numass.viewer.test.TestApp"
|
|
}
|
|
mainClassName = mainClass
|
|
|
|
version = "0.4.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 'com.jcraft:jsch:0.1.54'
|
|
|
|
compile 'org.controlsfx:controlsfx:8.40.12'
|
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:'1.1.2-2"
|
|
compile "no.tornado:tornadofx:1.7.1"
|
|
}
|
|
|
|
apply plugin: 'kotlin'
|
|
repositories {
|
|
mavenCentral()
|
|
}
|