upgrade to javafx 13

This commit is contained in:
2019-10-03 18:03:01 +02:00
parent 6fc62006fa
commit 7c12b7506f
3 changed files with 7 additions and 7 deletions

View File

@@ -3,7 +3,7 @@ plugins {
id 'java'
id 'groovy'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.7'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
repositories {
@@ -12,15 +12,15 @@ repositories {
}
javafx {
version = "12"
version = "13"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.hamcrest', name: 'hamcrest-library', version: '1.3'
compile group: 'org.codehaus.groovy', name: 'groovy-all', version: '2.5.7'
compile group: 'org.springframework', name:'spring-context', version: '5.1.8.RELEASE'
compile group: 'org.codehaus.groovy', name: 'groovy-all', version: '3.0.0-beta-3'
compile group: 'org.springframework', name:'spring-context', version: '5.2.0.RELEASE'
compile group: 'net.sf.supercsv', name: 'super-csv', version: '2.4.0'
compile group: 'commons-validator', name: 'commons-validator', version: '1.6'
compile group: 'de.jensd', name: 'fontawesomefx-commons', version: '11.0'
@@ -31,7 +31,7 @@ dependencies {
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.0'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.0'
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.1'
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.2'
}
group 'ninja.javafx'