Hiago William Petris

Results 3 comments of Hiago William Petris

I'm facing a similar issue. I have a RestClient: ``` package com.test; import jakarta.enterprise.context.ApplicationScoped; import jakarta.ws.rs.GET; import jakarta.ws.rs.Path; import org.eclipse.microprofile.rest.client.inject.RegisterRestClient; @Path("/api/v2") @RegisterRestClient @ApplicationScoped public interface TestClient { @GET @Path("/test") Response...

@geoand yes, I have tried that, it fails with same error. It only works if I use resteasy-client instead of rest-client. However, as this is an extension, I cannot use...

@geoand nvm, I have found the solution on #34180 I was using AdditionalBeanBuildItem instead of AdditionalIndexedClassesBuildItem. It is working now that I have changed. Thanks!