RichTurner
RichTurner

Reputation: 825

Why is there no maven resteasy-jaxrs package for version 4.2.0?

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?

Upvotes: 4

Views: 3000

Answers (2)

rü-
rü-

Reputation: 2312

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.

Upvotes: 6

Francisco Melo junior
Francisco Melo junior

Reputation: 338

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,

Upvotes: 0

Related Questions