Closed vitomanuguerrasoft closed 1 month ago
If the class is in an external dependency, you need to make sure that that dependency is added to the annotation index. You need to add these in your application.properties:
quarkus.index-dependency.EXTERNAL.group-id=MY_GROUP_ID
quarkus.index-dependency.EXTERNAL.artifact-id=MY_ARTIFACT_ID
(EXTERNAL
is a logical name for the dependency, you can change that to whatever you want, MY_GROUP_ID
and MY_ARTIFACT_ID
need to be changed to the actual groupId and artifactId of your dependency)
Also, update your Quarkus version, 3.6.5 is very old and not LTS :)
@jmartisk Thank you for your response. With this configuration, everything is working perfectly now.
I get this error trying to run my application:
The "FooDTO" is from an external dependency.
Quarkus version: 3.6.5