Change the version of jersey and some dependencies

This commit is contained in:
Yoann
2024-03-26 16:25:18 +01:00
parent 33baf66b7b
commit 318115cd60
8 changed files with 84 additions and 16 deletions

31
pom.xml
View File

@@ -9,10 +9,10 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<jersey.version>3.0.4</jersey.version>
<org.json.version>20210307</org.json.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<jersey.version> 3.1.5</jersey.version>
<org.json.version>20240303</org.json.version>
<servlet.api.version>5.0.0</servlet.api.version>
</properties>
@@ -38,6 +38,7 @@
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>${servlet.api.version}</version>
<scope>provided</scope>
</dependency>
<!-- Jersey -->
@@ -88,21 +89,19 @@
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>3.0.1</version>
<scope>runtime</scope>
</dependency>
<version>4.0.2</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>4.0.5</version>
</dependency>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.moxy</artifactId>
<version>3.0.0</version>
</dependency>
<version>4.0.2</version>
</dependency>
</dependencies>