-
Notifications
You must be signed in to change notification settings - Fork 26
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
No CORBA in JDK9+ #11
Comments
Wouldn't it be simply an option that UUID does not inherit from IDLEntity? Is somebody really using this feature for CORBA? |
Yes, that is the easy fix that we did in our UUID fork |
When will a new version be made available with this fix? |
@aiannucci @xuwei-k was there a release after removing CORBA dependency? Appreciate if you can point me to a JDK9/11 compatible release. |
Is this maintained any more? @stephenc |
@jdinesh86 we haven't published a release to Maven central, you can build it from our source code https://github.com/mulesoft/eaio-uuid |
You might also need something like this: https://stackoverflow.com/questions/51710274/is-there-a-replacement-library-for-corba-in-jdk-11#answer-56624800
|
UUID relies on org.omg.CORBA.portable.IDLEntity which is no longer resolved by default in JDK9 modular system and it is likely to be removed completely in JDK11.
Right now, the workaround is to manually add the java.corba module by the --add-modules command line parameter.
Another option, is to add the CORBA standalone dependency to the project where UUID is used.
It would be nice to have a proper fix for newer Java versions.
The text was updated successfully, but these errors were encountered: