Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

jboss

resteasy

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?

like image 708
RichTurner Avatar asked Oct 27 '25 04:10

RichTurner


1 Answers

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.

like image 70
rü- Avatar answered Oct 30 '25 13:10

rü-