Skip to content

Commit

Permalink
[SHIRO-750] update jax-rs dependency to jakarta.
Browse files Browse the repository at this point in the history
  - Non-Breaking change.
  - Also set the scope to provided. Containers will provide this API.
  • Loading branch information
bmarwell committed May 8, 2020
1 parent 47dd4c1 commit c77a857
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
<spring.version>5.2.5.RELEASE</spring.version>
<spring-boot.version>2.2.6.RELEASE</spring-boot.version>
<guice.version>4.2.2</guice.version>
<jaxrs.api.version>2.0.1</jaxrs.api.version>
<jaxrs.api.version>2.1.6</jaxrs.api.version>
<htmlunit.version>2.39.0</htmlunit.version>

<!-- Test 3rd-party dependencies: -->
Expand Down
5 changes: 3 additions & 2 deletions support/jaxrs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,10 @@
</dependency>

<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<groupId>jakarta.ws.rs</groupId>
<artifactId>jakarta.ws.rs-api</artifactId>
<version>${jaxrs.api.version}</version>
<scope>provided</scope>
</dependency>

<!-- Test Deps -->
Expand Down

0 comments on commit c77a857

Please sign in to comment.