I have a Quarkus application (lets name it cosmicApp) with working rest endpoints. I added a maven dependency which has some classes annotated with @Path
and @GET
. But these resources are not available when the application is running. Classes in the cosmicApp use classes in the added dependency, so it should be there.
Just the resources missing.
Any hint?
Both projects use
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-jackson</artifactId>
</dependency>
Quarkus version 1.2.1.Final