-
Notifications
You must be signed in to change notification settings - Fork 67
Introduce: Module for Swagger 2.x #117
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
Conversation
} | ||
|
||
@Schema(description = "the foo's person") | ||
class PersonReference extends Reference<Person> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In my real use-case, this would also be an interface, i.e. interface PersonReference extends IReference
. That breaks the properties resolution because unfortunately the getter in the interface won't be detected as such.
What's left to do for this to go in? Is there anything I can help with? |
Hi @jochenberger, I‘d say:
I didn’t have much time recently. Maybe I’ll get to it over the upcoming weekend. If you have the capacity, you could look into points 3 and 4. |
1 should be done, at least checkstyle doesn't complain anymore. |
Alright. Merging and releasing the initial version of the |
Release v4.13.0 is complete and includes this new |
In the scope of GH-76 and even independently of that, it'd be convenient for out-of-the-box support of Swagger 2.x (OpenAPI) via a new module.
For now this is a draft, including changes from @jochenberger and myself.