You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Java 9 allows the use of the --add-opens command line option multiple times specifying different package names.
However when invoking Capsule with more than one --add-opens option only the last one is preserved in the resulting command line returned by Capsule, breaking the target application.
The error suggests that JVM options are collected by using a Map, a List should be used instead.
The text was updated successfully, but these errors were encountered:
Java 9 allows the use of the
--add-opens
command line option multiple times specifying different package names.However when invoking Capsule with more than one
--add-opens
option only the last one is preserved in the resulting command line returned by Capsule, breaking the target application.The error suggests that JVM options are collected by using a Map, a List should be used instead.
The text was updated successfully, but these errors were encountered: