I'm trying to use quarkus-smallrye-openapi to generate a complete Swagger UI page but I can't get it to work.
The basic problem is the generated page all the operations are down at the bottom in a tag called default.
However my operations are annotated with @Operation that has summary, description, responses, tags, etc. Also the @Parameter descriptions are ignored. These annotations are from io.swagger.v3.oas.annotations package.
I have tried to add an org.eclipse.microprofile.openapi.annotations.OpenAPIDefinition annotation to a class that extends javax.ws.rs.core.Application but that just adds info to the top of the page...the content is not integrated using those tags, etc.
How can I create a complete/integrated Swagger UI page using quarkus-smallrye-openapi ?
I'm using 1.13.7.Final
-Dave