Hi Marc,
Officially, EAP 7.x is supported only with the version of
RESTEasy 3.x that shipped with it.
Unofficially, EAP 7.x should work with RESTEasy 4.x. The easiest thing to do is to download a distribution zip file from https://resteasy.github.io/downloads/ (e.g., resteasy-jaxrs-4.5.9.Final-all.zip) and unzip it in directory modules//system/layers/base. It will replace all of the relevant jars.
To answer your specific questions, org.jboss.resteasy:jaxrs-api
is now
<dependency>
<groupId>org.jboss.spec.javax.ws.rs</groupId>
<artifactId>jboss-jaxrs-api_2.1_spec</artifactId>
<version>2.0.1.Final</version>
</dependency>
and org.jboss.resteasy:resteasy-jaxrs is now
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-core-api</artifactId>
<version>...</version>
</dependency>
and
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-core</artifactId>
<version>...</version>
</dependency>
-Ron
Jboss EAP7.3, Migration RestEasy 3.0.x to 4.x, jaxrs-api I found https://github.com/resteasy/Resteasy/pull/1697/files https://docs.jboss.org/resteasy/docs/4.0.0.Final/userguide/html/Migration_from_older_versions.html#Migration_to_RESTEasy_3.1 Question: Should with Jboss EAP 7.x only used RestEasy3, or can also be used RestEasy4 ? I have <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>jaxrs-api</artifactId> <version>3.0.12.Final</version> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-jaxrs</artifactId> <version>3.0.12.Final</version> </dependency> How to migrate following ? <artifactId>jaxrs-api</artifactId> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>jaxrs-api</artifactId> <version>3.0.12.Final</version> </dependency> _______________________________________________ resteasy-dev mailing list -- resteasy-dev@lists.jboss.org To unsubscribe send an email to resteasy-dev-leave@lists.jboss.org