Skip to content

Commit

Permalink
fix: add transitive modules for badass-runtime-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpeintner committed Apr 24, 2024
1 parent 94d6b22 commit 1880847
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.1.0'
// id 'org.javamodularity.moduleplugin' version '1.8.12'
id 'org.beryx.runtime' version '1.13.1'
// id 'org.unbroken-dome.xjc' version '2.0.0'
id 'com.github.bjornvester.xjc' version "1.8.1" // https://github.com/bjornvester/xjc-gradle-plugin
Expand Down Expand Up @@ -84,7 +85,8 @@ configurations.testXjcCatalogResolution {
javafx {
version = '22.0.1' // '16' // '14.0.2.1'
// modules = ['javafx.base', 'javafx.graphics', 'javafx.controls']
modules = ['javafx.controls', 'javafx.swing', 'javafx.fxml', 'javafx.media', 'javafx.web']
// Note: [email protected] with badass-runtime-plugin relies on having all modules (transitive included) declared as "top-level" modules
modules = ['javafx.base', 'javafx.graphics', 'javafx.controls', 'javafx.swing', 'javafx.fxml', 'javafx.media', 'javafx.web']
}

xjc {
Expand Down

0 comments on commit 1880847

Please sign in to comment.