We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5ad858 commit c1a44b6Copy full SHA for c1a44b6
1 file changed
build.gradle
@@ -62,10 +62,15 @@ application {
62
// mainClassName = "com.example.hellofx.Launcher"
63
// applicationName = 'hello-fx'
64
applicationDefaultJvmArgs = [
65
+ // necessary for ControlsFX
66
"--add-opens=javafx.base/com.sun.javafx.event=ALL-UNNAMED",
67
"--add-opens=javafx.base/com.sun.javafx.collections=ALL-UNNAMED",
68
"--add-opens=javafx.base/com.sun.javafx.runtime=ALL-UNNAMED",
69
// XXX many more necessary depending on control
70
+
71
+ // necessary for Jasperreports XML parsing
72
+ // https://github.com/TIBCOSoftware/jasperreports/issues/61
73
+ "--add-opens=java.xml/com.sun.org.apache.xerces.internal.util=ALL-UNNAMED",
74
]
75
}
76
0 commit comments