Skip to content

Commit

Permalink
added jakarta namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir.Shapkin authored and Vladimir.Shapkin committed Jul 15, 2024
1 parent d38bea8 commit 24a658e
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1299,25 +1299,59 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
</dependency>
<dependency>
<!-- JSON API -->
<groupId>jakarta.json</groupId>
<artifactId>jakarta.json-api</artifactId>
<version>2.1.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- JSON API -->
<!-- @todo
Should be removed after updating all dependent projects
to jakarta namespace.
-->
<groupId>javax.json</groupId>
<artifactId>javax.json-api</artifactId>
<version>1.1.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- JSON reference implementation -->
<groupId>org.eclipse.parsson</groupId>
<artifactId>jakarta.json</artifactId>
<version>1.1.6</version>
<scope>runtime</scope>
</dependency>
<dependency>
<!-- JSON reference implementation -->
<!-- @todo
Should be removed after updating all dependent projects
to jakarta namespace.
-->
<groupId>org.glassfish</groupId>
<artifactId>javax.json</artifactId>
<version>1.1.4</version>
<scope>runtime</scope>
</dependency>
<dependency>
<!-- JSR-311 JAX-RS API -->
<groupId>jakarta.ws.rs</groupId>
<artifactId>jakarta.ws.rs-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- JSR-311 JAX-RS API -->
<!-- @todo
Should be removed after updating all dependent projects
to jakarta namespace.
-->
<groupId>javax.ws.rs</groupId>
<artifactId>jsr311-api</artifactId>
<version>1.1.1</version>
<scope>provided</scope>
</dependency>

<dependency>
<!-- JAXB API -->
<groupId>javax.xml.bind</groupId>
Expand Down Expand Up @@ -1458,6 +1492,17 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
</dependency>
<dependency>
<!-- Servlet API -->
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- Servlet API -->
<!-- @todo
Should be removed after updating all dependent projects
to jakarta namespace.
-->
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
Expand Down

0 comments on commit 24a658e

Please sign in to comment.