Posts

Showing posts with the label swagger with helidon

Enable OpenAPI and Swagger UI in Helidon MP application

Image
Hi Team, Today I'm sharing my learning to how to configure OpenAPI and Swagger UI in a Helidon MP application. Helidon is closely associated with OpenAPI, hence we only need configurations to enable Open API. dependencies           <dependency> <groupId>io.helidon.microprofile.openapi</groupId> <artifactId>helidon-microprofile-openapi</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.eclipse.microprofile.openapi</groupId> <artifactId>microprofile-openapi-api</artifactId> </dependency> <dependency> <groupId>io.helidon.integrations.openapi-ui</groupId> <artifactId>helidon-integrations-openapi-ui</artifactId> <scope>runtime</scope> </dependency> plugins    ...