-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
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
[Java][MicroProfile] Use jsonb imports for serializing and deserializing enum #6064
[Java][MicroProfile] Use jsonb imports for serializing and deserializing enum #6064
Conversation
cab7830
to
5b375bb
Compare
@Ravisankar-Challa thanks for the PR. I did a test with petstore and
I wonder if you can take a look when you've time. |
@wing328 I have fixed the issue related to withXml=true. I am able to successfully run ./bin/run-all-petstore in local. But it is failing in CI with error ./bin/run-all-petstore not found. Can you please take a look. https://cloud.drone.io/OpenAPITools/openapi-generator/9162 |
Please merge the latest master into your branch as we've introduced a new way to update the sample: |
317f4a3
to
d36ccf6
Compare
@wing328 I have done rebase on master branch. Now the build is successful. |
Tested with both withXml set to true, false and both are compiling fine without issues. |
Fixes the issue no: 2 reported in the issue #6028
The pull request removes all jaxb (xml) imports when withXml=false also it uses JsonbTypeSerializer & JsonbTypeDeserializer to deal with enum data types.