Exit Full View

ToolApp / toolapp-terminalfx / build.gradle

// toolapp-terminalfx

plugins {
    id 'org.jetbrains.kotlin.jvm'
    id 'application'
    id 'org.openjfx.javafxplugin'
}

defaultTasks 'install'

apply plugin: 'org.openjfx.javafxplugin'
apply plugin: 'kotlin'

javafx {
    modules = ['javafx.controls','javafx.graphics']
}

dependencies {
    compile project(':toolapp-core')
    compile 'com.kodedu.terminalfx:terminalfx:1.1.0'
}