|
83 | 83 | <lib.h2.version>2.3.232</lib.h2.version> |
84 | 84 | <lib.hikaricp.version>6.3.0</lib.hikaricp.version> |
85 | 85 | <lib.javassist.version>3.30.2-GA</lib.javassist.version> |
86 | | - <lib.jackson.version>2.19.1</lib.jackson.version> |
87 | | - <lib.jackson-databind.version>2.19.1</lib.jackson-databind.version> |
88 | | - <lib.jakarta-json-api.version>2.1.3</lib.jakarta-json-api.version> |
89 | | - <lib.jakarta-mail-api.version>2.1.3</lib.jakarta-mail-api.version> |
90 | | - <lib.jakarta-servlet-api.version>6.1.0</lib.jakarta-servlet-api.version> |
91 | | - <lib.jakarta-xml-bind-api.version>4.0.2</lib.jakarta-xml-bind-api.version> |
92 | 86 | <lib.jaxb-runtime.version>4.0.5</lib.jaxb-runtime.version> |
93 | 87 | <lib.jdo.api.version>3.2.1</lib.jdo.api.version> |
94 | | - <lib.jersey.version>3.1.10</lib.jersey.version> |
95 | 88 | <lib.json-unit.version>4.1.1</lib.json-unit.version> |
96 | 89 | <lib.jsonwebtoken.version>0.12.6</lib.jsonwebtoken.version> |
97 | 90 | <lib.jsr305.version>3.0.2</lib.jsr305.version> |
|
128 | 121 | <artifactId>commons-collections4</artifactId> |
129 | 122 | <version>${lib.commons.collections4.version}</version> |
130 | 123 | </dependency> |
131 | | - <dependency> |
132 | | - <groupId>org.glassfish.jersey.core</groupId> |
133 | | - <artifactId>jersey-client</artifactId> |
134 | | - <version>${lib.jersey.version}</version> |
135 | | - </dependency> |
136 | | - <!-- Server architecture --> |
137 | | - <dependency> |
138 | | - <groupId>jakarta.servlet</groupId> |
139 | | - <artifactId>jakarta.servlet-api</artifactId> |
140 | | - <version>${lib.jakarta-servlet-api.version}</version> |
141 | | - </dependency> |
142 | | - <dependency> |
143 | | - <groupId>org.glassfish.jersey.containers</groupId> |
144 | | - <artifactId>jersey-container-servlet</artifactId> |
145 | | - <version>${lib.jersey.version}</version> |
146 | | - </dependency> |
147 | | - <dependency> |
148 | | - <groupId>org.glassfish.jersey.media</groupId> |
149 | | - <artifactId>jersey-media-json-jackson</artifactId> |
150 | | - <version>${lib.jersey.version}</version> |
151 | | - </dependency> |
152 | | - <dependency> |
153 | | - <groupId>org.glassfish.jersey.media</groupId> |
154 | | - <artifactId>jersey-media-multipart</artifactId> |
155 | | - <version>${lib.jersey.version}</version> |
156 | | - </dependency> |
157 | | - <dependency> |
158 | | - <groupId>org.glassfish.jersey.ext</groupId> |
159 | | - <artifactId>jersey-bean-validation</artifactId> |
160 | | - <version>${lib.jersey.version}</version> |
161 | | - </dependency> |
162 | | - <dependency> |
163 | | - <groupId>org.glassfish.jersey.inject</groupId> |
164 | | - <artifactId>jersey-hk2</artifactId> |
165 | | - <version>${lib.jersey.version}</version> |
166 | | - </dependency> |
167 | 124 | <!-- JAXB --> |
168 | | - <dependency> |
169 | | - <groupId>jakarta.xml.bind</groupId> |
170 | | - <artifactId>jakarta.xml.bind-api</artifactId> |
171 | | - <version>${lib.jakarta-xml-bind-api.version}</version> |
172 | | - </dependency> |
173 | 125 | <dependency> |
174 | 126 | <groupId>org.glassfish.jaxb</groupId> |
175 | 127 | <artifactId>jaxb-runtime</artifactId> |
176 | 128 | <version>${lib.jaxb-runtime.version}</version> |
177 | 129 | </dependency> |
178 | 130 | <!-- JSON API specification and default implementation --> |
179 | | - <dependency> |
180 | | - <groupId>jakarta.json</groupId> |
181 | | - <artifactId>jakarta.json-api</artifactId> |
182 | | - <version>${lib.jakarta-json-api.version}</version> |
183 | | - </dependency> |
184 | 131 | <dependency> |
185 | 132 | <groupId>org.eclipse.parsson</groupId> |
186 | 133 | <artifactId>jakarta.json</artifactId> |
|
224 | 171 | <artifactId>oauth2-oidc-sdk</artifactId> |
225 | 172 | <version>${lib.nimbus-oauth2-oidc-sdk.version}</version> |
226 | 173 | </dependency> |
227 | | - <!-- JAX-RS JSON --> |
228 | | - <dependency> |
229 | | - <groupId>com.fasterxml.jackson.core</groupId> |
230 | | - <artifactId>jackson-core</artifactId> |
231 | | - <version>${lib.jackson.version}</version> |
232 | | - </dependency> |
233 | | - <dependency> |
234 | | - <groupId>com.fasterxml.jackson.core</groupId> |
235 | | - <artifactId>jackson-databind</artifactId> |
236 | | - <version>${lib.jackson-databind.version}</version> |
237 | | - </dependency> |
238 | | - <dependency> |
239 | | - <groupId>com.fasterxml.jackson.core</groupId> |
240 | | - <artifactId>jackson-annotations</artifactId> |
241 | | - <version>${lib.jackson.version}</version> |
242 | | - </dependency> |
243 | | - <dependency> |
244 | | - <groupId>com.fasterxml.jackson.jakarta.rs</groupId> |
245 | | - <artifactId>jackson-jakarta-rs-base</artifactId> |
246 | | - <version>${lib.jackson.version}</version> |
247 | | - </dependency> |
248 | | - <dependency> |
249 | | - <groupId>com.fasterxml.jackson.jakarta.rs</groupId> |
250 | | - <artifactId>jackson-jakarta-rs-json-provider</artifactId> |
251 | | - <version>${lib.jackson.version}</version> |
252 | | - </dependency> |
253 | | - <dependency> |
254 | | - <groupId>com.fasterxml.jackson.datatype</groupId> |
255 | | - <artifactId>jackson-datatype-jdk8</artifactId> |
256 | | - <version>${lib.jackson.version}</version> |
257 | | - </dependency> |
258 | 174 | <!-- Metrics --> |
259 | 175 | <dependency> |
260 | 176 | <groupId>io.micrometer</groupId> |
|
311 | 227 | <version>${lib.owasp.encoder.version}</version> |
312 | 228 | </dependency> |
313 | 229 | <!-- JavaMail API --> |
314 | | - <dependency> |
315 | | - <groupId>jakarta.mail</groupId> |
316 | | - <artifactId>jakarta.mail-api</artifactId> |
317 | | - <version>${lib.jakarta-mail-api.version}</version> |
318 | | - </dependency> |
319 | 230 | <dependency> |
320 | 231 | <groupId>org.eclipse.angus</groupId> |
321 | 232 | <artifactId>angus-mail</artifactId> |
|
350 | 261 | </exclusion> |
351 | 262 | </exclusions> |
352 | 263 | </dependency> |
353 | | - <dependency> |
354 | | - <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
355 | | - <artifactId>jersey-test-framework-provider-grizzly2</artifactId> |
356 | | - <version>${lib.jersey.version}</version> |
357 | | - <scope>test</scope> |
358 | | - </dependency> |
359 | 264 | <dependency> |
360 | 265 | <groupId>org.mockito</groupId> |
361 | 266 | <artifactId>mockito-core</artifactId> |
|
0 commit comments