I'am using quarkus-smallrye-openapi in a quarkus 1.13.0.Final application. Everything works fine when I execute the program with mvnw compile quarkus:dev. However, when I execute the unit tests having some variable of LocalDate data type by running mvn test the program then fails to marshal and unmarshal LocalDate type objects from json and it produces
"com.fasterxml.jackson.databind.exc.InvalidDefinitionException:
Java 8 date/time type java.time.LocalDate not supported by default: add Module "com.fasterxml.jackson.datatype:jackson-datatype-jsr310" to enable handling"
when I remove the quarkus-smallrye-openapi dependency and relevant annotations, then the test run fine.