4

Last release I see in maven for resteasy-jaxrs is 3.8.1. When trying to upgrade resteasy-client to 4.2.0 there is a dependency in there on resteasy-jaxrs:4.2.0:

org.jboss.resteasy.plugins.providers.RegisterBuiltin.getClientInitializedResteasyProviderFactory.

This dependency is not listed in the pom and also it hasn't been published anywhere that I can see...only thing I see is resteasy-jaxrs-all which has a lot more jars than I want.

Are we not supposed to be using the resteasy-jaxrs package anymore?

RichTurner
  • 797
  • 7
  • 14
  • I see it on Maven Central https://search.maven.org/search?q=g:org.jboss.resteasy%20AND%20a:resteasy-client&core=gav. WildFly is at 3.8.1 if you're using the client against WildFly. – James R. Perkins Aug 22 '19 at 18:05
  • @JamesR.Perkins: Your link is to `resteasy-client`, not `resteasy-jaxrs`. The latest versions for all of resteasy is now 4.4.1, but `resteasy-jaxrs` is still `4.0.0.Beta` or `3.9.3.Final`. – rü- Dec 19 '19 at 04:57

2 Answers2

6

In the RESTEasy 4 is coming soon blog post, they explain:

esteasy-jaxrs and resteasy-client modules have been split into resteasy-core-spi, resteasy-client-api, resteasy-core and resteasy-client, with the first and second ones to be considered as public modules.

But resteasy-jaxrs is still in the docs, even when some some fixes where done for 4.4.2.Final released on 2019-12-19.

My project builds just fine after switching to resteasy-core-spi or resteasy-core.

rü-
  • 2,129
  • 17
  • 37
0

On mvn central repository you can download resteasy 4.0.0, which is beta:

https://mvnrepository.com/artifact/org.jboss.resteasy/resteasy-jaxrs

The following versions of RESTEasy were integrated in JBoss:

    JBoss      RESTEasy
For  7.2     ~ 3.6.1.SP2
For  7.1     ~ 3.0.26.Final     
For  7.0     ~ 3.0.19.SP5

Regards,

  • 1
    The latest versions for all of resteasy is now `4.4.1`, but `resteasy-jaxrs` is still `4.0.0.Beta` or `3.9.3.Final`. – rü- Dec 19 '19 at 05:00