Tedi / example / build.gradle
// tedi example plugins { id 'org.jetbrains.kotlin.jvm' id 'org.openjfx.javafxplugin' } defaultTasks 'run' apply plugin: 'org.openjfx.javafxplugin' apply plugin: 'kotlin' apply plugin: 'application' mainClassName = "uk.co.nickthecoder.tedi.example.Example" javafx { modules = ['javafx.controls'] } dependencies { compile project(':tedi-core') }