java.lang.RuntimeException: java.lang.ClassNotFoundException: org.glassfish.jersey.client.JerseyClientBuilderat javax.ws.rs.client.ClientBuilder.newBuilder(ClientBuilder.java:102)at javax.ws.rs.client.ClientBuilder.newClient(ClientBuilder.java:113)
I see in ClientBuilder this:
private static final String JAXRS_DEFAULT_CLIENT_BUILDER =
"org.glassfish.jersey.client.JerseyClientBuilder";
Was something removed in 1.13.1.Final
How do I get org.glassfish.jersey.client.JerseyClientBuilder back?
-Dave
--
You received this message because you are subscribed to the Google Groups "Quarkus Development mailing list" group.
To unsubscribe from this group and stop receiving emails from it, send an email to quarkus-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/quarkus-dev/958d6e5b-e30f-442a-a17c-6bad4fcf316dn%40googlegroups.com.
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-multipart</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-jackson</artifactId>
</dependency>
-Dave