Skip to content

Commit f20effb

Browse files
committed
Add RESTEasy JSON-P Provider to Client
The RESTEasy JSON-P Provider is required on Client side to use the Json.createObjectBuidler API's. Upgrade to RESTEasy 3.0.5.Final
1 parent d017237 commit f20effb

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

pom.xml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
<artifactId>json</artifactId>
102102
<version>20131018</version>
103103
<scope>test</scope>
104-
</dependency>
104+
</dependency>
105105
</dependencies>
106106
<pluginRepositories>
107107
<pluginRepository>
@@ -253,13 +253,19 @@
253253
<dependency>
254254
<groupId>org.jboss.resteasy</groupId>
255255
<artifactId>resteasy-client</artifactId>
256-
<version>3.0.4.Final</version>
256+
<version>3.0.5.Final</version>
257257
<scope>test</scope>
258258
</dependency>
259259
<dependency>
260260
<groupId>org.jboss.resteasy</groupId>
261261
<artifactId>resteasy-jaxb-provider</artifactId>
262-
<version>3.0.4.Final</version>
262+
<version>3.0.5.Final</version>
263+
<scope>test</scope>
264+
</dependency>
265+
<dependency>
266+
<groupId>org.jboss.resteasy</groupId>
267+
<artifactId>resteasy-json-p-provider</artifactId>
268+
<version>3.0.5.Final</version>
263269
<scope>test</scope>
264270
</dependency>
265271
</dependencies>
@@ -323,13 +329,19 @@
323329
<dependency>
324330
<groupId>org.jboss.resteasy</groupId>
325331
<artifactId>resteasy-client</artifactId>
326-
<version>3.0.4.Final</version>
332+
<version>3.0.5.Final</version>
327333
<scope>test</scope>
328334
</dependency>
329335
<dependency>
330336
<groupId>org.jboss.resteasy</groupId>
331337
<artifactId>resteasy-jaxb-provider</artifactId>
332-
<version>3.0.4.Final</version>
338+
<version>3.0.5.Final</version>
339+
<scope>test</scope>
340+
</dependency>
341+
<dependency>
342+
<groupId>org.jboss.resteasy</groupId>
343+
<artifactId>resteasy-json-p-provider</artifactId>
344+
<version>3.0.5.Final</version>
333345
<scope>test</scope>
334346
</dependency>
335347
</dependencies>

0 commit comments

Comments
 (0)