blob: bcb7165390c59b3a564227db3507bac8913761ba [file] [log] [blame]
margarethafbfe2872024-01-04 23:29:28 +01001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
margarethae9dd9962024-01-24 09:39:35 +01005 <groupId>de.ids-mannheim.korap.kustvakt</groupId>
6 <artifactId>Kustvakt</artifactId>
margaretha503f6a72025-09-29 10:51:08 +02007 <version>0.79.1</version>
margarethafbfe2872024-01-04 23:29:28 +01008 <properties>
9 <java.version>17</java.version>
10 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
dependabot[bot]75740742025-09-23 09:27:27 +000011 <jersey.version>3.1.11</jersey.version>
dependabot[bot]457e9392025-10-07 12:03:00 +000012 <hibernate.version>7.1.3.Final</hibernate.version>
Marc Kupietzadb48572025-09-17 08:25:07 +020013 <spring.version>6.2.11</spring.version>
margarethafbfe2872024-01-04 23:29:28 +010014 <!-- spring6.version is used in jersey and defined here
15 to make sure that jersey uses the correct spring version-->
16 <spring6.version>${spring.version}</spring6.version>
Marc Kupietz49638552025-09-25 14:41:35 +020017 <jetty.version>12.1.1</jetty.version>
dependabot[bot]9e1136c2025-09-26 17:09:45 +000018 <flyway.version>11.13.2</flyway.version>
dependabot[bot]58f59182025-09-23 09:27:44 +000019 <log4j.version>2.25.2</log4j.version>
margaretha503f6a72025-09-29 10:51:08 +020020 <krill.version>[0.64.4,)</krill.version>
21 <koral.version>0.46</koral.version>
dependabot[bot]288849c2025-09-23 09:29:09 +000022 <!-- Align JBoss Logging with Hibernate Validator 9 requirements -->
23 <jboss.logging.version>3.6.1.Final</jboss.logging.version>
margarethafbfe2872024-01-04 23:29:28 +010024 </properties>
25 <profiles>
26 <profile>
27 <id>full</id>
28 <activation>
29 <activeByDefault>true</activeByDefault>
30 </activation>
31 <build>
32 <plugins>
33 <plugin>
34 <artifactId>maven-shade-plugin</artifactId>
dependabot[bot]47c11e72025-09-23 09:28:42 +000035 <version>3.6.1</version>
margarethafbfe2872024-01-04 23:29:28 +010036 <executions>
37 <!-- option 1 -->
38 <execution>
39 <id>full</id>
40 <phase>package</phase>
41 <goals>
42 <goal>shade</goal>
43 </goals>
44 <configuration>
45 <finalName>Kustvakt-full-${project.version}</finalName>
46 <transformers>
47 <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
48 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
49 <mainClass>
50 de.ids_mannheim.korap.server.KustvaktServer
51 </mainClass>
52 <manifestEntries>
53 <Multi-Release>true</Multi-Release>
54 </manifestEntries>
55 </transformer>
56 <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
57 <resource>META-INF/spring.handlers</resource>
58 </transformer>
59 <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
60 <resource>META-INF/spring.schemas</resource>
61 </transformer>
62 <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
63 <resource>META-INF/spring/aot.factories</resource>
64 </transformer>
65 <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
66 <resource>META-INF/hk2-locator/default</resource>
67 </transformer>
68 <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
69 <resource>META-INF/spring.tooling</resource>
70 </transformer>
71 </transformers>
72 <filters>
73 <filter>
74 <artifact>*:*</artifact>
75 <excludes>
76 <exclude>db/lite/**</exclude>
margarethacd12b372024-04-10 09:48:28 +020077 <exclude>META-INF/*.SF</exclude>
78 <exclude>META-INF/*.DSA</exclude>
79 <exclude>META-INF/*.RSA</exclude>
margarethafbfe2872024-01-04 23:29:28 +010080 </excludes>
81 </filter>
82 </filters>
83 </configuration>
84 </execution>
85 </executions>
86 </plugin>
87 </plugins>
88 </build>
89 </profile>
90
91
92 <profile>
93 <id>lite</id>
94 <build>
95 <plugins>
96 <plugin>
97 <artifactId>maven-shade-plugin</artifactId>
dependabot[bot]47c11e72025-09-23 09:28:42 +000098 <version>3.6.1</version>
margarethafbfe2872024-01-04 23:29:28 +010099 <executions>
100 <!--option 2 -->
101 <execution>
102 <id>lite</id>
103 <phase>package</phase>
104 <goals>
105 <goal>shade</goal>
106 </goals>
107 <configuration>
108 <finalName>
109 Kustvakt-lite-${project.version}
110 </finalName>
111 <transformers>
112 <transformer
113 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
114 <mainClass>
115 de.ids_mannheim.korap.server.KustvaktLiteServer
116 </mainClass>
117 <manifestEntries>
118 <Multi-Release>true</Multi-Release>
119 </manifestEntries>
120 </transformer>
121 <transformer
122 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
123 <resource>META-INF/spring.handlers
124 </resource>
125 </transformer>
126 <transformer
127 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
128 <resource>META-INF/spring.schemas
129 </resource>
130 </transformer>
131 </transformers>
132 <filters>
133 <filter>
134 <artifact>*:*</artifact>
135 <excludes>
136 <exclude>db/mysql/**</exclude>
137 <exclude>db/predefined/**</exclude>
138 <exclude>db/sqlite/**</exclude>
margarethafbfe2872024-01-04 23:29:28 +0100139 <exclude>com.novell.ldap</exclude>
140 <exclude>com.unboundid</exclude>
141 <exclude>org.glassfish.jersey.test-framework*</exclude>
margaretha0b17fac2024-04-22 09:48:10 +0200142 <exclude>META-INF/*.SF</exclude>
143 <exclude>META-INF/*.DSA</exclude>
144 <exclude>META-INF/*.RSA</exclude>
margarethafbfe2872024-01-04 23:29:28 +0100145 </excludes>
146 </filter>
147 </filters>
148 </configuration>
149 </execution>
150 </executions>
151 </plugin>
152 </plugins>
153 </build>
154 </profile>
155
156 </profiles>
157 <build>
158 <resources>
159 <resource>
160 <directory>src/main/resources</directory>
161 <filtering>true</filtering>
162 <!-- <includes> <include>**/*.info</include> <include>**/*.xml</include>
163 <include>**/*.conf</include> <include>**/*.kustvakt</include> <include>**/*.properties</include>
164 <include>**/*.sql</include> <include>**/*.vm</include> </includes> -->
165 </resource>
166 </resources>
167 <testResources>
168 <testResource>
169 <directory>src/test/resources</directory>
170 </testResource>
171 <testResource>
172 <directory>src/main/resources</directory>
173 <filtering>true</filtering>
174 <includes>
175 <include>**/*.info</include>
176 <include>**/*.json</include>
177 <include>**/*.ldif</include>
178 <include>**/*.properties</include>
179 </includes>
180 </testResource>
181 </testResources>
182 <plugins>
183 <!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html -->
184 <plugin>
185 <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
186 <artifactId>maven-java-formatter-plugin</artifactId>
187 <version>0.4</version>
188 <configuration>
189 <configFile>${project.basedir}/Format.xml</configFile>
190 <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion>
191 <compilerSource>${java.version}</compilerSource>
192 <compilerCompliance>${java.version}</compilerCompliance>
193 <compilerTargetPlatform>${java.version}</compilerTargetPlatform>
194 </configuration>
195 <!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution>
196 </executions> -->
197 </plugin>
198 <plugin>
199 <groupId>org.apache.maven.plugins</groupId>
200 <artifactId>maven-compiler-plugin</artifactId>
dependabot[bot]8ddf79e2025-09-23 09:28:53 +0000201 <version>3.14.1</version>
margarethafbfe2872024-01-04 23:29:28 +0100202 <configuration>
203 <compilerVersion>${java.version}</compilerVersion>
204 <source>${java.version}</source>
205 <target>${java.version}</target>
206 <!-- <compilerArguments> <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
207 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
208 </compilerArguments> -->
209 <annotationProcessors>
210 <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
211 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
212 </annotationProcessors>
213 </configuration>
214 </plugin>
215 <plugin>
216 <groupId>org.apache.maven.plugins</groupId>
217 <artifactId>maven-source-plugin</artifactId>
dependabot[bot]ac820b22025-09-23 09:28:00 +0000218 <version>3.3.1</version>
margarethafbfe2872024-01-04 23:29:28 +0100219 <executions>
220 <execution>
221 <id>attach-sources</id>
222 <goals>
223 <goal>jar</goal>
224 </goals>
225 </execution>
226 </executions>
227 </plugin>
228 <plugin>
229 <groupId>org.apache.maven.plugins</groupId>
230 <artifactId>maven-surefire-plugin</artifactId>
dependabot[bot]6f30e2a2025-09-23 09:28:39 +0000231 <version>3.5.4</version>
margarethafbfe2872024-01-04 23:29:28 +0100232 <configuration>
233 <reuseForks>true</reuseForks>
234 <forkCount>1</forkCount>
235 <threadCount>10</threadCount>
236 <argLine>-Xmx512m
237 -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine>
238 <excludes>
239 <exclude>de/ids_mannheim/korap/authentication/APIAuthenticationTest.java</exclude>
240 <exclude>de/ids_mannheim/korap/authentication/AuthenticationFilterTest.java</exclude>
241 <exclude>de/ids_mannheim/korap/authentication/Kustvakt*.java</exclude>
242 <exclude>de/ids_mannheim/korap/authentication/LdapTest.java</exclude>
243 <exclude>de/ids_mannheim/korap/authentication/Random*.java</exclude>
244 <exclude>de/ids_mannheim/korap/web/controller/TokenExpiryTest.java</exclude>
245 <exclude>de/ids_mannheim/korap/web/controller/AdminLoadVCTest.java</exclude>
246 </excludes>
247 <includes>
248 <include>de/ids_mannheim/korap/**/*.java</include>
249 <include>de/ids_mannheim/korap/authentication/LdapAuth3Test.java</include>
250 </includes>
251 </configuration>
252 </plugin>
253 </plugins>
254 </build>
255
256 <dependencies>
margarethafbfe2872024-01-04 23:29:28 +0100257 <dependency>
Marc Kupietzeb9c75e2024-01-21 10:26:50 +0100258 <groupId>de.ids-mannheim.korap.krill</groupId>
margaretha7677aa42024-01-05 10:26:06 +0100259 <artifactId>Krill</artifactId>
260 <version>${krill.version}</version>
261 <exclusions>
262 <exclusion>
263 <groupId>com.fasterxml.jackson.jaxrs</groupId>
264 <artifactId>jackson-jaxrs-json-provider</artifactId>
265 </exclusion>
266 <exclusion>
267 <groupId>org.glassfish.jersey.containers</groupId>
268 <artifactId>jersey-container-grizzly2-http</artifactId>
269 </exclusion>
270 <exclusion>
271 <groupId>org.apache.logging.log4j</groupId>
272 <artifactId>log4j-api</artifactId>
273 </exclusion>
274 <exclusion>
275 <groupId>org.apache.logging.log4j</groupId>
276 <artifactId>log4j-core</artifactId>
277 </exclusion>
278 <exclusion>
279 <groupId>org.apache.logging.log4j</groupId>
280 <artifactId>log4j-slf4j-impl</artifactId>
281 </exclusion>
282 <exclusion>
283 <groupId>org.slf4j</groupId>
284 <artifactId>jul-to-slf4j</artifactId>
285 </exclusion>
286 </exclusions>
margarethafbfe2872024-01-04 23:29:28 +0100287 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100288
289 <dependency>
Marc Kupietzeb9c75e2024-01-21 10:26:50 +0100290 <groupId>de.ids-mannheim.korap.koral</groupId>
margaretha7677aa42024-01-05 10:26:06 +0100291 <artifactId>Koral</artifactId>
292 <version>${koral.version}</version>
293 <exclusions>
294 <exclusion>
295 <groupId>org.apache.logging.log4j</groupId>
296 <artifactId>log4j-api</artifactId>
297 </exclusion>
298 <exclusion>
299 <groupId>org.apache.logging.log4j</groupId>
300 <artifactId>log4j-core</artifactId>
301 </exclusion>
302 <exclusion>
303 <groupId>org.apache.logging.log4j</groupId>
304 <artifactId>log4j-slf4j-impl</artifactId>
305 </exclusion>
306 <exclusion>
307 <groupId>org.apache.logging.log4j</groupId>
308 <artifactId>log4j-jul</artifactId>
309 </exclusion>
310 </exclusions>
311 </dependency>
312
margarethafbfe2872024-01-04 23:29:28 +0100313 <!-- Jersey -->
314 <dependency>
315 <groupId>org.glassfish.jersey.core</groupId>
316 <artifactId>jersey-server</artifactId>
317 <version>${jersey.version}</version>
318 </dependency>
319
320 <dependency>
321 <groupId>org.glassfish.jersey.ext</groupId>
322 <artifactId>jersey-spring6</artifactId>
323 <version>${jersey.version}</version>
324 <!-- as long as we set spring6.version property transitive deps are ok
325 -->
326 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100327
margarethafbfe2872024-01-04 23:29:28 +0100328 <!-- JSON -->
329 <dependency>
330 <groupId>org.glassfish.jersey.media</groupId>
331 <artifactId>jersey-media-json-jackson</artifactId>
332 <version>${jersey.version}</version>
333 <!--<exclusions> <exclusion> <groupId>com.fasterxml.jackson.core</groupId>
334 <artifactId>jackson-annotations</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId>
335 <artifactId>jackson-databind</artifactId> </exclusion> </exclusions> -->
336 </dependency>
margarethaee5af2e2025-02-07 09:17:53 +0100337
margarethafbfe2872024-01-04 23:29:28 +0100338
margarethafbfe2872024-01-04 23:29:28 +0100339 <!-- Logging -->
340 <dependency>
341 <groupId>org.apache.logging.log4j</groupId>
342 <artifactId>log4j-api</artifactId>
343 <version>${log4j.version}</version>
344 </dependency>
345 <dependency>
346 <groupId>org.apache.logging.log4j</groupId>
347 <artifactId>log4j-core</artifactId>
348 <version>${log4j.version}</version>
349 <exclusions>
350 <exclusion>
351 <groupId>org.apache.logging.log4j</groupId>
352 <artifactId>log4j-api</artifactId>
353 </exclusion>
354 </exclusions>
355 </dependency>
356 <dependency>
357 <groupId>org.apache.logging.log4j</groupId>
358 <artifactId>log4j-slf4j2-impl</artifactId>
359 <version>${log4j.version}</version>
360 </dependency>
361 <dependency>
362 <groupId>org.apache.logging.log4j</groupId>
363 <artifactId>log4j-jul</artifactId>
364 <version>${log4j.version}</version>
365 <exclusions>
366 <exclusion>
367 <groupId>org.apache.logging.log4j</groupId>
368 <artifactId>log4j-api</artifactId>
369 </exclusion>
370 </exclusions>
371 </dependency>
372 <dependency>
373 <groupId>org.slf4j</groupId>
374 <artifactId>slf4j-api</artifactId>
dependabot[bot]d14c7732025-09-23 09:28:03 +0000375 <version>2.0.17</version>
margarethafbfe2872024-01-04 23:29:28 +0100376 </dependency>
377
dependabot[bot]288849c2025-09-23 09:29:09 +0000378 <!-- Explicitly pin JBoss Logging to a version compatible with HV 9 -->
379 <dependency>
380 <groupId>org.jboss.logging</groupId>
381 <artifactId>jboss-logging</artifactId>
382 <version>${jboss.logging.version}</version>
383 </dependency>
384
margarethafbfe2872024-01-04 23:29:28 +0100385 <!-- Java Assist -->
386 <dependency>
387 <groupId>org.javassist</groupId>
388 <artifactId>javassist</artifactId>
389 <version>3.30.2-GA</version>
390 </dependency>
391
margaretha7677aa42024-01-05 10:26:06 +0100392 <!-- Encryption -->
margarethafbfe2872024-01-04 23:29:28 +0100393 <dependency>
394 <groupId>org.mindrot</groupId>
395 <artifactId>jbcrypt</artifactId>
396 <version>0.4</version>
397 </dependency>
398
margarethafbfe2872024-01-04 23:29:28 +0100399 <!-- Spring -->
400 <dependency>
401 <groupId>org.springframework</groupId>
402 <artifactId>spring-core</artifactId>
403 <version>${spring.version}</version>
404 </dependency>
405 <dependency>
406 <groupId>org.springframework</groupId>
407 <artifactId>spring-web</artifactId>
408 <version>${spring.version}</version>
409 </dependency>
410 <dependency>
411 <groupId>org.springframework</groupId>
412 <artifactId>spring-orm</artifactId>
413 <version>${spring.version}</version>
414 </dependency>
415
margarethafbfe2872024-01-04 23:29:28 +0100416 <dependency>
417 <groupId>org.springframework</groupId>
418 <artifactId>spring-context</artifactId>
419 <version>${spring.version}</version>
420 </dependency>
421 <dependency>
422 <groupId>org.springframework</groupId>
margarethafbfe2872024-01-04 23:29:28 +0100423 <artifactId>spring-test</artifactId>
424 <version>${spring.version}</version>
425 <scope>compile</scope>
426 </dependency>
427
428 <!-- apparently this order prevents the spring schemas from being overriden
429 in META-INF/spring.schemas, thus must stay like this -->
430 <dependency>
431 <groupId>org.springframework</groupId>
432 <artifactId>spring-aop</artifactId>
433 <version>${spring.version}</version>
434 </dependency>
435 <dependency>
436 <groupId>org.springframework</groupId>
437 <artifactId>spring-aspects</artifactId>
438 <version>${spring.version}</version>
439 </dependency>
440
margarethafbfe2872024-01-04 23:29:28 +0100441 <!-- jetty -->
442 <dependency>
443 <groupId>org.eclipse.jetty</groupId>
444 <artifactId>jetty-server</artifactId>
445 <version>${jetty.version}</version>
446 </dependency>
447 <dependency>
Marc Kupietz49638552025-09-25 14:41:35 +0200448 <groupId>org.eclipse.jetty.ee10</groupId>
449 <artifactId>jetty-ee10-servlet</artifactId>
margarethafbfe2872024-01-04 23:29:28 +0100450 <version>${jetty.version}</version>
451 </dependency>
452 <dependency>
Marc Kupietz49638552025-09-25 14:41:35 +0200453 <groupId>org.eclipse.jetty.ee10</groupId>
454 <artifactId>jetty-ee10-webapp</artifactId>
margarethafbfe2872024-01-04 23:29:28 +0100455 <version>${jetty.version}</version>
456 </dependency>
457
margarethafbfe2872024-01-04 23:29:28 +0100458 <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId>
459 <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions>
460 <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId>
461 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId>
462 </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId>
463 <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion>
464 <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId>
465 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId>
466 </exclusion> </exclusions> </dependency> -->
467 <dependency>
468 <groupId>org.apache.httpcomponents</groupId>
469 <artifactId>httpclient</artifactId>
470 <version>4.5.14</version>
471 <exclusions>
472 <exclusion>
473 <groupId>commons-logging</groupId>
474 <artifactId>commons-logging</artifactId>
475 </exclusion>
476 </exclusions>
477 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100478
479 <!-- Database -->
margarethafbfe2872024-01-04 23:29:28 +0100480 <dependency>
margaretha7677aa42024-01-05 10:26:06 +0100481 <groupId>org.xerial</groupId>
482 <artifactId>sqlite-jdbc</artifactId>
dependabot[bot]9e1e84b2025-09-23 09:28:07 +0000483 <version>3.50.3.0</version>
margaretha7677aa42024-01-05 10:26:06 +0100484 </dependency>
485
margarethab9b317d2025-01-23 15:13:47 +0100486
margaretha7677aa42024-01-05 10:26:06 +0100487 <!-- MySql -->
margarethab9b317d2025-01-23 15:13:47 +0100488 <!-- EM: disabled due to high security risk, see CVE-2023-22102
margaretha7677aa42024-01-05 10:26:06 +0100489 <dependency>
490 <groupId>mysql</groupId>
491 <artifactId>mysql-connector-java</artifactId>
492 <version>8.0.30</version>
margarethab9b317d2025-01-23 15:13:47 +0100493 </dependency>-->
margarethafbfe2872024-01-04 23:29:28 +0100494
margaretha7677aa42024-01-05 10:26:06 +0100495 <dependency>
496 <groupId>org.apache.commons</groupId>
497 <artifactId>commons-dbcp2</artifactId>
dependabot[bot]fe7216e2025-09-23 09:27:37 +0000498 <version>2.13.0</version>
margaretha7677aa42024-01-05 10:26:06 +0100499 <exclusions>
500 <exclusion>
501 <groupId>commons-logging</groupId>
502 <artifactId>commons-logging</artifactId>
503 </exclusion>
504 </exclusions>
505 </dependency>
506
507 <!-- Flyway -->
508 <dependency>
509 <groupId>org.flywaydb</groupId>
510 <artifactId>flyway-core</artifactId>
511 <version>${flyway.version}</version>
512 </dependency>
513
margarethafbfe2872024-01-04 23:29:28 +0100514 <!-- Hibernate -->
515 <dependency>
516 <groupId>org.hibernate.orm</groupId>
517 <artifactId>hibernate-core</artifactId>
518 <version>${hibernate.version}</version>
519 </dependency>
520 <dependency>
521 <groupId>org.hibernate.orm</groupId>
522 <artifactId>hibernate-jpamodelgen</artifactId>
523 <version>${hibernate.version}</version>
524 </dependency>
Marc Kupietz93f55f42025-09-25 17:06:33 +0200525 <!-- Remove hibernate-ehcache (Ehcache 2 integration removed in modern Hibernate) -->
margarethafbfe2872024-01-04 23:29:28 +0100526 <dependency>
527 <groupId>org.hibernate.orm</groupId>
528 <artifactId>hibernate-c3p0</artifactId>
529 <version>${hibernate.version}</version>
530 </dependency>
531
532 <dependency>
533 <groupId>org.hibernate.orm</groupId>
534 <artifactId>hibernate-community-dialects</artifactId>
535 <version>${hibernate.version}</version>
536 </dependency>
537
margaretha7677aa42024-01-05 10:26:06 +0100538
margarethafbfe2872024-01-04 23:29:28 +0100539 <!-- Validation -->
540 <dependency>
margaretha10618a02024-02-21 11:06:01 +0100541 <groupId>jakarta.validation</groupId>
542 <artifactId>jakarta.validation-api</artifactId>
dependabot[bot]c2d71ab2025-09-23 09:28:18 +0000543 <version>3.1.1</version>
margaretha10618a02024-02-21 11:06:01 +0100544 </dependency>
545
546 <dependency>
margarethafbfe2872024-01-04 23:29:28 +0100547 <groupId>org.hibernate.validator</groupId>
548 <artifactId>hibernate-validator</artifactId>
dependabot[bot]288849c2025-09-23 09:29:09 +0000549 <version>9.0.1.Final</version>
margarethafbfe2872024-01-04 23:29:28 +0100550 </dependency>
551 <dependency>
552 <groupId>org.glassfish</groupId>
553 <artifactId>jakarta.el</artifactId>
554 <version>4.0.2</version>
margarethafbfe2872024-01-04 23:29:28 +0100555 </dependency>
556
557 <!-- servlet -->
558 <dependency>
559 <groupId>jakarta.persistence</groupId>
560 <artifactId>jakarta.persistence-api</artifactId>
dependabot[bot]a58037b2025-09-23 09:28:33 +0000561 <version>3.2.0</version>
margarethafbfe2872024-01-04 23:29:28 +0100562 </dependency>
dependabot[bot]fe7216e2025-09-23 09:27:37 +0000563 <!-- Ensure jakarta.transaction.* classes are available for Hibernate 6 -->
564 <dependency>
565 <groupId>jakarta.transaction</groupId>
566 <artifactId>jakarta.transaction-api</artifactId>
567 <version>2.0.1</version>
568 </dependency>
margarethafbfe2872024-01-04 23:29:28 +0100569
margarethafbfe2872024-01-04 23:29:28 +0100570 <dependency>
571 <groupId>jakarta.servlet</groupId>
572 <artifactId>jakarta.servlet-api</artifactId>
dependabot[bot]ab8c1382025-09-23 09:28:58 +0000573 <version>6.1.0</version>
margarethafbfe2872024-01-04 23:29:28 +0100574 </dependency>
575
margaretha7677aa42024-01-05 10:26:06 +0100576 <!-- Utilities -->
577 <dependency>
Marc Kupietz93f55f42025-09-25 17:06:33 +0200578 <groupId>net.sf.ehcache</groupId>
579 <artifactId>ehcache</artifactId>
dependabot[bot]cf276e02025-09-30 10:10:39 +0000580 <version>2.10.9.2</version>
Marc Kupietz93f55f42025-09-25 17:06:33 +0200581 </dependency>
582 <dependency>
margaretha7677aa42024-01-05 10:26:06 +0100583 <groupId>joda-time</groupId>
584 <artifactId>joda-time</artifactId>
dependabot[bot]aed7ef02025-09-23 09:28:21 +0000585 <version>2.14.0</version>
margaretha7677aa42024-01-05 10:26:06 +0100586 </dependency>
Marc Kupietz04a6c302025-09-12 19:05:47 +0200587 <!-- Apache Commons Lang 3 (maintained) -->
588 <dependency>
589 <groupId>org.apache.commons</groupId>
590 <artifactId>commons-lang3</artifactId>
dependabot[bot]e8d44532025-09-24 17:08:43 +0000591 <version>3.19.0</version>
Marc Kupietz04a6c302025-09-12 19:05:47 +0200592 </dependency>
Marc Kupietz54fdc062025-09-12 18:47:18 +0200593 <dependency>
margaretha7677aa42024-01-05 10:26:06 +0100594 <groupId>commons-io</groupId>
595 <artifactId>commons-io</artifactId>
dependabot[bot]23ddec52025-09-23 09:27:53 +0000596 <version>2.20.0</version>
margaretha7677aa42024-01-05 10:26:06 +0100597 </dependency>
598 <dependency>
599 <groupId>commons-validator</groupId>
600 <artifactId>commons-validator</artifactId>
dependabot[bot]4b1cf0d2025-09-23 09:28:30 +0000601 <version>1.10.0</version>
margaretha7677aa42024-01-05 10:26:06 +0100602 <exclusions>
603 <exclusion>
604 <groupId>commons-logging</groupId>
605 <artifactId>commons-logging</artifactId>
606 </exclusion>
607 </exclusions>
608 </dependency>
margarethafbfe2872024-01-04 23:29:28 +0100609 <dependency>
610 <groupId>org.apache.commons</groupId>
611 <artifactId>commons-text</artifactId>
dependabot[bot]d1736f32025-09-23 09:29:01 +0000612 <version>1.14.0</version>
margarethafbfe2872024-01-04 23:29:28 +0100613 </dependency>
margarethafbfe2872024-01-04 23:29:28 +0100614
615 <!-- LDAP -->
616 <dependency>
617 <groupId>com.novell.ldap</groupId>
618 <artifactId>jldap</artifactId>
619 <version>4.3</version>
620 </dependency>
621 <dependency>
622 <groupId>com.unboundid</groupId>
623 <artifactId>unboundid-ldapsdk</artifactId>
dependabot[bot]aa4e8ff2025-09-23 09:29:04 +0000624 <version>7.0.3</version>
margarethafbfe2872024-01-04 23:29:28 +0100625 </dependency>
626
margarethafbfe2872024-01-04 23:29:28 +0100627 <!-- OAuth -->
628 <dependency>
629 <groupId>com.nimbusds</groupId>
630 <artifactId>oauth2-oidc-sdk</artifactId>
dependabot[bot]e38d0f62025-09-30 17:10:26 +0000631 <version>11.29.2</version>
margarethafbfe2872024-01-04 23:29:28 +0100632 </dependency>
633
634 <!-- Project Lombok -->
635 <dependency>
636 <groupId>org.projectlombok</groupId>
637 <artifactId>lombok</artifactId>
dependabot[bot]b17e3452025-09-23 09:27:57 +0000638 <version>1.18.42</version>
margarethafbfe2872024-01-04 23:29:28 +0100639 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100640
641 <!-- Test -->
margarethafbfe2872024-01-04 23:29:28 +0100642 <dependency>
643 <groupId>org.mock-server</groupId>
644 <artifactId>mockserver-netty</artifactId>
645 <version>5.15.0</version>
646 <scope>test</scope>
647 </dependency>
648 <dependency>
649 <groupId>org.junit.jupiter</groupId>
650 <artifactId>junit-jupiter</artifactId>
dependabot[bot]022c9922025-09-30 10:09:27 +0000651 <version>6.0.0</version>
margarethafbfe2872024-01-04 23:29:28 +0100652 <scope>test</scope>
653 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100654 <!-- Jersey Test -->
655 <dependency>
656 <groupId>org.glassfish.jersey.test-framework</groupId>
657 <artifactId>jersey-test-framework-core</artifactId>
658 <version>${jersey.version}</version>
659 <scope>test</scope>
660 </dependency>
661 <dependency>
662 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
663 <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
664 <version>${jersey.version}</version>
665 <scope>test</scope>
666 </dependency>
667
668
669 <!-- Used in KustvaktClassLoader.java-->
670 <dependency>
671 <groupId>org.reflections</groupId>
672 <artifactId>reflections</artifactId>
673 <version>0.10.2</version>
674 </dependency>
margarethafbfe2872024-01-04 23:29:28 +0100675 </dependencies>
676</project>