// tickle-editor
plugins {
id 'org.jetbrains.kotlin.jvm'
id 'org.openjfx.javafxplugin'
}
apply plugin: 'kotlin'
apply plugin: 'maven'
javafx {
modules = ['javafx.controls', 'javafx.web', 'javafx.swing']
}
dependencies {
compile project(':tickle-core')
compile project(':tickle-feather')
compile 'uk.co.nickthecoder:paratask-core:0.3'
compile 'uk.co.nickthecoder:scarea-extra:0.4'
compile 'uk.co.nickthecoder:scarea-syntax:0.4'
compile 'uk.co.nickthecoder:feather-scarea:0.3'
compile 'uk.co.nickthecoder:fxessentials:0.3'
compile 'uk.co.nickthecoder:harbourfx:0.2'
compile "org.lwjgl:lwjgl:$lwjglVersion"
compile "org.lwjgl:lwjgl-glfw:$lwjglVersion"
compile "org.lwjgl:lwjgl-jemalloc:$lwjglVersion"
compile "org.lwjgl:lwjgl-openal:$lwjglVersion"
compile "org.lwjgl:lwjgl-opengl:$lwjglVersion"
compile "org.lwjgl:lwjgl-stb:$lwjglVersion"
compile "org.joml:joml:${jomlVersion}"
}