migrated to java 11

This commit is contained in:
aj 2019-05-25 09:17:48 +01:00
parent d0615e84b1
commit a78f520f2f

View File

@ -13,13 +13,21 @@ plugins {
id 'eclipse'
id 'com.github.johnrengelman.shadow' version '5.0.0'
id 'org.openjfx.javafxplugin' version '0.0.7'
}
application {
mainClassName = 'sarsoo.fmframework.fx.FmFramework'
}
javafx {
version = "11"
modules = [ 'javafx.controls', 'javafx.fxml', 'javafx.graphics', 'javafx.web' ]
}
version = '0.9.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11
repositories {
mavenCentral()