Skip to content

Commit 790e10b

Browse files
wilkinsonaodrotbohm
authored andcommitted
#376 - Compile against latest JAX-RS API.
This commit updates Spring HATEOAS' optional dependency on the JAX-RS API to use the latest version (which uses a different artifact ID). This change will make things a little easier for the Spring IO Platform which currently provides dependency management for Jersey 2.x (which uses JAX-RS 2.0), by allowing it to stop providing dependency management for the JAX-RS 1.0 API.
1 parent 71ec26f commit 790e10b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<spring.version>4.1.7.RELEASE</spring.version>
6262
<logback.version>1.1.3</logback.version>
6363
<jackson.version>2.5.4</jackson.version>
64-
<jaxrs.version>1.0</jaxrs.version>
64+
<jaxrs.version>2.0.1</jaxrs.version>
6565
<minidevjson.version>2.2</minidevjson.version>
6666
<jsonpath.version>2.0.0</jsonpath.version>
6767
<slf4j.version>1.7.12</slf4j.version>
@@ -447,7 +447,7 @@
447447

448448
<dependency>
449449
<groupId>javax.ws.rs</groupId>
450-
<artifactId>jsr311-api</artifactId>
450+
<artifactId>javax.ws.rs-api</artifactId>
451451
<version>${jaxrs.version}</version>
452452
<optional>true</optional>
453453
</dependency>

0 commit comments

Comments
 (0)