We're considering using grails 4.0.0 for our project, and i see that this new version has Micronaut as new parent application context, and that many Micronaut features are handled (seen in grails doc: http://docs.grails.org/latest/guide/introduction.html#micronautSupport)
We would like to use the Micronaut Swagger/OpenAPI documentation generator feature (https://micronaut-projects.github.io/micronaut-openapi/latest/guide/index.html) with grails, and would like to know if this is possible.
I tried it on a grails 4 project by adding the right dependecies and use the Micronaut and Swagger V3 annotations, but it does not work when i run the grails app (no *.yml generated in the the META-INF/swagger)
The micronaut dependecies:
annotationProcessor "io.micronaut:micronaut-validation"
annotationProcessor "io.micronaut.configuration:micronaut-openapi"
compile "io.micronaut:micronaut-inject"
compile "io.micronaut:micronaut-validation"
compile "io.micronaut:micronaut-runtime"
compile "io.swagger.core.v3:swagger-annotations"
compile "io.micronaut:micronaut-http-client"
compile "io.micronaut:micronaut-http-server-netty"
Thank you very much!