-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Two more packages in JVM args for Java 16+ compatibility #183
Two more packages in JVM args for Java 16+ compatibility #183
Conversation
@labkey-jeckels be aware, that change might not be quite right. see:
I'll see if i have time today to look into this, but might not until after xmas This seems on-point, but I only briefly scanned it |
Updating xstreamVersion=1.2.2 might also resolve this |
Yes, looks like java.awt.font is in java.desktop, not java.base. Try this variant instead: --add-opens=java.desktop/java.awt.font=ALL-UNNAMED |
Looking a little closer, that's a warning, not the error. Is that output the full command-line? It looks like it's missing the name of the main class, for example, and other arguments. |
Didnt I post one on the ONPRC issue tracker? See here:
|
Also, when I tried: --add-opens=java.desktop/java.awt.font=ALL-UNNAMED It completely died with an error about not being able to find java.desktop. I can dig that up if you want me to try it. |
Rationale
Certain pipeline scenarios need access to java.util.Properties and java.awt.font.TextAttributes to be compatible with Java 16+
Changes