-
-
Notifications
You must be signed in to change notification settings - Fork 41
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
Plugin not compatible with java 9 #74
Comments
Thanks for reporting, I'll look at ways to fix that. |
Can confirm. I am running into the same issue. It might also be worth mentioning that the It would be awesome to have a working version of this amazing plugin available for JAVA 9+. Thank you for this great module! |
see also jOOQ/jOOQ#6477 I'll probably relax the way the configuration XML is read to remove jaxb dependency or use a different library. |
what I have done:
|
just released
|
Works for me as well. Thanks for taking care of this. |
Hi @McFoggy
If using any recent version of plugin in tandem with Java 9, without adding additional modules the build mvn ... fails explicitly with
The JAXB APIs are considered to be Java EE APIs, and therefore are no longer contained on the default class path in Java SE 9.
There is an option to run with -add-modules java.se.ee or -add-modules java.xml.bind but it won't be backwards compatible. It would make probably sense to avoid using java.xml.bind and substitute it by anything else or define the dependencies explicitly in plugin such as
and use
The text was updated successfully, but these errors were encountered: