-
My example project:https://github.com/hantsy/quarkus-sandbox/tree/master/restclient-classic The dependencies in the POM: <dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-arc</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-jsonb</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-client</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-client-jsonb</artifactId>
</dependency> java.lang.RuntimeException:
java.lang.RuntimeException:
io.quarkus.builder.ChainBuildException:
Multiple producers of item class
io.quarkus.security.spi.DefaultSecurityCheckBuildItem
(io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#setUpDenyAllJaxRs)
|
Beta Was this translation helpful? Give feedback.
Answered by
gsmet
Apr 22, 2024
Replies: 2 comments
-
And the https://github.com/hantsy/quarkus-sandbox/tree/master/restclient-jaxrs, https://github.com/hantsy/quarkus-sandbox/tree/master/restclient-kotlin got the same exceptions. |
Beta Was this translation helpful? Give feedback.
0 replies
-
For RESTEasy Classic, you need to use:
For Quarkus REST (formerly RESTEasy Reactive):
See: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
hantsy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For RESTEasy Classic, you need to use:
quarkus-resteasy
quarkus-resteasy-client
For Quarkus REST (formerly RESTEasy Reactive):
quarkus-rest
quarkus-rest-client
See: