plugins{ id "org.jetbrains.kotlin.jvm" version '1.1.2' id "application" } repositories { mavenCentral() } if (!hasProperty('mainClass')) { ext.mainClass = 'inr.numass.control.ServerApp'//"inr.numass.viewer.test.TestApp" } mainClassName = mainClass version = "0.1.0" description = "The control room application for numass slow control" compileKotlin.kotlinOptions.jvmTarget = "1.8" dependencies { compile project(':numass-core') compile project(':numass-control') compile project(':numass-server') compile 'org.controlsfx:controlsfx:8.40.12' compile "no.tornado:tornadofx:1.7.4" compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:1.1.2" } apply plugin: 'kotlin'