deleted unsupported modules

This commit is contained in:
Sebastian Lenzlinger 2022-04-16 17:20:35 +02:00
parent f7324f2300
commit 11897a6a68

View File

@ -7,8 +7,7 @@ plugins {
javafx {
version = "11.0.2"
modules = ['javafx.controls', 'javafx.fxml', 'javafx.base', 'javafx.scene', 'javafx.collections', 'javafx.beans', 'javafx.event', '' +
'javafx.stage']
modules = ['javafx.controls', 'javafx.fxml', 'javafx.base']
}
group 'ch.unibas.dmi.dbis'
@ -33,6 +32,7 @@ dependencies {
implementation 'org.apache.logging.log4j:log4j-core:2.17.1'
implementation 'org.openjfx:javafx-controls:18'
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'
implementation group: 'org.openjfx', name: 'javafx', version: '11', ext: 'pom'
testImplementation('org.junit.jupiter:junit-jupiter:5.8.2')
}