-
Bug
-
Resolution: Done
-
Major
-
None
-
None
-
None
was trying to figure out how to write a rest client with rest easy (which was surprisingly hard btw I found that the docs at https://docs.jboss.org/resteasy/docs/4.4.1.Final/userguide/html_single/index.html#d4e386 says to add the following:
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>${resteasy.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>${resteasy.version}</version>
</dependency>
problem is that only `resteasy-client` exist. The `reasteasy-jaxrs` does not.
for now I just removed that section and put this instead:
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>4.4.1.Final</version>
</dependency>
btw. it would be nice if you expanded the ${resteasy.version} property in the docs so one can just copy/paste it or at least used that property consistently - in other places it says ${project.version}
- is duplicated by
-
RESTEASY-2458 missing newer `resteasy-jaxrs` versions on maven central
- Resolved