-
-
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
JaxRS Server still use Swagger v2 as dependency #27
Comments
Input @wing328:
I will try to propose something for |
So then it doesn't support OpenAPI 3.0.0 or is it fixed in any other PR. |
@mohanaraosv: As explained in this issue, it is just a matter of fixing the generator. |
I have tried updating the version for the
Maybe someone with more experience can use my efforts when fixing this issue. |
Any updates on this? |
…enAPITools#27) Serialization (JSON-B vs Jackson) for Helidon SE Server generator Signed-off-by: aserkes <[email protected]>
Generated JaxRS Server uses this library as dependency:
It should be:
Of course the templates need to be changed in order to adopt the new notation and annotations...
The most visible impact is on the capability for the server to self describe itself.
When you run
mvn clean package jetty:run
inside thesamples/server/petstore/jaxrs/jersey2/
folder and then callhttp://localhost:8080/v2/swagger.yaml
, you obtain the corresponding spec:The big next step for the JaxRS generators will be to generate code that will be using Swagger v3 artefacts. Then the page to call to get the spec will be
http://localhost:8080/v2/openapi.yaml
The text was updated successfully, but these errors were encountered: