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
Starting from JDK 9 we may need to add option --add-opens to the application, but if user has JDK 8 installed it won't launch because JDK 8 is not aware of such option.
The text was updated successfully, but these errors were encountered:
@asm0dey I would entertain any pull requests on this, although there isn't any support for conditional logic on JVM arguments supplied depending on the JVM that's going to execute at runtime. You can easily supply this as a hard-coded JVM argument, but not conditionally. I think it'd be fairly interesting to support that concept if you were interested in possibly trying to implement it.
Well, if I understand correctly we have a function to get a version of Java. If so — then before building final command we could add one more arg, which will be assigned in the if block
Starting from JDK 9 we may need to add option
--add-opens
to the application, but if user has JDK 8 installed it won't launch because JDK 8 is not aware of such option.The text was updated successfully, but these errors were encountered: