-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add transitive modules for badass-runtime-plugin
- Loading branch information
1 parent
94d6b22
commit 1880847
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 { | ||
|