blob: b8cdf93a73dd7a5601ad091c6225350e39504521 [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>
margaretha59ec7022025-07-21 14:16:36 +02007 <version>0.80-SNAPSHOT</version>
margarethafbfe2872024-01-04 23:29:28 +01008 <properties>
Marc Kupietz33d18d02025-10-15 16:37:29 +02009 <java.version>21</java.version>
margarethafbfe2872024-01-04 23:29:28 +010010 <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>
margaretha56edea32025-10-21 11:39:07 +020021 <koral.version>[0.47,)</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>
margarethafbfe2872024-01-04 23:29:28 +0100203 <source>${java.version}</source>
204 <target>${java.version}</target>
205 <!-- <compilerArguments> <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
206 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
207 </compilerArguments> -->
208 <annotationProcessors>
209 <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
210 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
211 </annotationProcessors>
212 </configuration>
213 </plugin>
214 <plugin>
215 <groupId>org.apache.maven.plugins</groupId>
216 <artifactId>maven-source-plugin</artifactId>
dependabot[bot]ac820b22025-09-23 09:28:00 +0000217 <version>3.3.1</version>
margarethafbfe2872024-01-04 23:29:28 +0100218 <executions>
219 <execution>
220 <id>attach-sources</id>
221 <goals>
222 <goal>jar</goal>
223 </goals>
224 </execution>
225 </executions>
226 </plugin>
227 <plugin>
228 <groupId>org.apache.maven.plugins</groupId>
229 <artifactId>maven-surefire-plugin</artifactId>
dependabot[bot]6f30e2a2025-09-23 09:28:39 +0000230 <version>3.5.4</version>
margarethafbfe2872024-01-04 23:29:28 +0100231 <configuration>
232 <reuseForks>true</reuseForks>
233 <forkCount>1</forkCount>
234 <threadCount>10</threadCount>
235 <argLine>-Xmx512m
236 -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine>
237 <excludes>
238 <exclude>de/ids_mannheim/korap/authentication/APIAuthenticationTest.java</exclude>
239 <exclude>de/ids_mannheim/korap/authentication/AuthenticationFilterTest.java</exclude>
240 <exclude>de/ids_mannheim/korap/authentication/Kustvakt*.java</exclude>
241 <exclude>de/ids_mannheim/korap/authentication/LdapTest.java</exclude>
242 <exclude>de/ids_mannheim/korap/authentication/Random*.java</exclude>
243 <exclude>de/ids_mannheim/korap/web/controller/TokenExpiryTest.java</exclude>
244 <exclude>de/ids_mannheim/korap/web/controller/AdminLoadVCTest.java</exclude>
245 </excludes>
246 <includes>
247 <include>de/ids_mannheim/korap/**/*.java</include>
248 <include>de/ids_mannheim/korap/authentication/LdapAuth3Test.java</include>
249 </includes>
250 </configuration>
251 </plugin>
252 </plugins>
253 </build>
254
255 <dependencies>
margarethafbfe2872024-01-04 23:29:28 +0100256 <dependency>
Marc Kupietzeb9c75e2024-01-21 10:26:50 +0100257 <groupId>de.ids-mannheim.korap.krill</groupId>
margaretha7677aa42024-01-05 10:26:06 +0100258 <artifactId>Krill</artifactId>
259 <version>${krill.version}</version>
260 <exclusions>
261 <exclusion>
262 <groupId>com.fasterxml.jackson.jaxrs</groupId>
263 <artifactId>jackson-jaxrs-json-provider</artifactId>
264 </exclusion>
265 <exclusion>
266 <groupId>org.glassfish.jersey.containers</groupId>
267 <artifactId>jersey-container-grizzly2-http</artifactId>
268 </exclusion>
269 <exclusion>
270 <groupId>org.apache.logging.log4j</groupId>
271 <artifactId>log4j-api</artifactId>
272 </exclusion>
273 <exclusion>
274 <groupId>org.apache.logging.log4j</groupId>
275 <artifactId>log4j-core</artifactId>
276 </exclusion>
277 <exclusion>
278 <groupId>org.apache.logging.log4j</groupId>
279 <artifactId>log4j-slf4j-impl</artifactId>
280 </exclusion>
281 <exclusion>
282 <groupId>org.slf4j</groupId>
283 <artifactId>jul-to-slf4j</artifactId>
284 </exclusion>
285 </exclusions>
margarethafbfe2872024-01-04 23:29:28 +0100286 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100287
288 <dependency>
Marc Kupietzeb9c75e2024-01-21 10:26:50 +0100289 <groupId>de.ids-mannheim.korap.koral</groupId>
margaretha7677aa42024-01-05 10:26:06 +0100290 <artifactId>Koral</artifactId>
291 <version>${koral.version}</version>
292 <exclusions>
293 <exclusion>
294 <groupId>org.apache.logging.log4j</groupId>
295 <artifactId>log4j-api</artifactId>
296 </exclusion>
297 <exclusion>
298 <groupId>org.apache.logging.log4j</groupId>
299 <artifactId>log4j-core</artifactId>
300 </exclusion>
301 <exclusion>
302 <groupId>org.apache.logging.log4j</groupId>
303 <artifactId>log4j-slf4j-impl</artifactId>
304 </exclusion>
305 <exclusion>
306 <groupId>org.apache.logging.log4j</groupId>
307 <artifactId>log4j-jul</artifactId>
308 </exclusion>
309 </exclusions>
310 </dependency>
311
margarethafbfe2872024-01-04 23:29:28 +0100312 <!-- Jersey -->
313 <dependency>
314 <groupId>org.glassfish.jersey.core</groupId>
315 <artifactId>jersey-server</artifactId>
316 <version>${jersey.version}</version>
317 </dependency>
318
319 <dependency>
320 <groupId>org.glassfish.jersey.ext</groupId>
321 <artifactId>jersey-spring6</artifactId>
322 <version>${jersey.version}</version>
323 <!-- as long as we set spring6.version property transitive deps are ok
324 -->
325 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100326
margarethafbfe2872024-01-04 23:29:28 +0100327 <!-- JSON -->
328 <dependency>
329 <groupId>org.glassfish.jersey.media</groupId>
330 <artifactId>jersey-media-json-jackson</artifactId>
331 <version>${jersey.version}</version>
332 <!--<exclusions> <exclusion> <groupId>com.fasterxml.jackson.core</groupId>
333 <artifactId>jackson-annotations</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId>
334 <artifactId>jackson-databind</artifactId> </exclusion> </exclusions> -->
335 </dependency>
margarethaee5af2e2025-02-07 09:17:53 +0100336
margarethafbfe2872024-01-04 23:29:28 +0100337
margarethafbfe2872024-01-04 23:29:28 +0100338 <!-- Logging -->
339 <dependency>
340 <groupId>org.apache.logging.log4j</groupId>
341 <artifactId>log4j-api</artifactId>
342 <version>${log4j.version}</version>
343 </dependency>
344 <dependency>
345 <groupId>org.apache.logging.log4j</groupId>
346 <artifactId>log4j-core</artifactId>
347 <version>${log4j.version}</version>
348 <exclusions>
349 <exclusion>
350 <groupId>org.apache.logging.log4j</groupId>
351 <artifactId>log4j-api</artifactId>
352 </exclusion>
353 </exclusions>
354 </dependency>
355 <dependency>
356 <groupId>org.apache.logging.log4j</groupId>
357 <artifactId>log4j-slf4j2-impl</artifactId>
358 <version>${log4j.version}</version>
359 </dependency>
360 <dependency>
361 <groupId>org.apache.logging.log4j</groupId>
362 <artifactId>log4j-jul</artifactId>
363 <version>${log4j.version}</version>
364 <exclusions>
365 <exclusion>
366 <groupId>org.apache.logging.log4j</groupId>
367 <artifactId>log4j-api</artifactId>
368 </exclusion>
369 </exclusions>
370 </dependency>
371 <dependency>
372 <groupId>org.slf4j</groupId>
373 <artifactId>slf4j-api</artifactId>
dependabot[bot]d14c7732025-09-23 09:28:03 +0000374 <version>2.0.17</version>
margarethafbfe2872024-01-04 23:29:28 +0100375 </dependency>
376
dependabot[bot]288849c2025-09-23 09:29:09 +0000377 <!-- Explicitly pin JBoss Logging to a version compatible with HV 9 -->
378 <dependency>
379 <groupId>org.jboss.logging</groupId>
380 <artifactId>jboss-logging</artifactId>
381 <version>${jboss.logging.version}</version>
margarethafbfe2872024-01-04 23:29:28 +0100382 </dependency>
383
384 <!-- Java Assist -->
385 <dependency>
386 <groupId>org.javassist</groupId>
387 <artifactId>javassist</artifactId>
388 <version>3.30.2-GA</version>
389 </dependency>
390
margaretha7677aa42024-01-05 10:26:06 +0100391 <!-- Encryption -->
margarethafbfe2872024-01-04 23:29:28 +0100392 <dependency>
393 <groupId>org.mindrot</groupId>
394 <artifactId>jbcrypt</artifactId>
395 <version>0.4</version>
396 </dependency>
397
margarethafbfe2872024-01-04 23:29:28 +0100398 <!-- Spring -->
399 <dependency>
400 <groupId>org.springframework</groupId>
401 <artifactId>spring-core</artifactId>
402 <version>${spring.version}</version>
403 </dependency>
404 <dependency>
405 <groupId>org.springframework</groupId>
406 <artifactId>spring-web</artifactId>
407 <version>${spring.version}</version>
408 </dependency>
409 <dependency>
410 <groupId>org.springframework</groupId>
411 <artifactId>spring-orm</artifactId>
412 <version>${spring.version}</version>
413 </dependency>
414
margarethafbfe2872024-01-04 23:29:28 +0100415 <dependency>
416 <groupId>org.springframework</groupId>
417 <artifactId>spring-context</artifactId>
418 <version>${spring.version}</version>
419 </dependency>
420 <dependency>
421 <groupId>org.springframework</groupId>
margarethafbfe2872024-01-04 23:29:28 +0100422 <artifactId>spring-test</artifactId>
423 <version>${spring.version}</version>
424 <scope>compile</scope>
425 </dependency>
426
427 <!-- apparently this order prevents the spring schemas from being overriden
428 in META-INF/spring.schemas, thus must stay like this -->
429 <dependency>
430 <groupId>org.springframework</groupId>
431 <artifactId>spring-aop</artifactId>
432 <version>${spring.version}</version>
433 </dependency>
434 <dependency>
435 <groupId>org.springframework</groupId>
436 <artifactId>spring-aspects</artifactId>
437 <version>${spring.version}</version>
438 </dependency>
439
margarethafbfe2872024-01-04 23:29:28 +0100440 <!-- jetty -->
441 <dependency>
442 <groupId>org.eclipse.jetty</groupId>
443 <artifactId>jetty-server</artifactId>
444 <version>${jetty.version}</version>
445 </dependency>
446 <dependency>
Marc Kupietz49638552025-09-25 14:41:35 +0200447 <groupId>org.eclipse.jetty.ee10</groupId>
448 <artifactId>jetty-ee10-servlet</artifactId>
margarethafbfe2872024-01-04 23:29:28 +0100449 <version>${jetty.version}</version>
450 </dependency>
451 <dependency>
Marc Kupietz49638552025-09-25 14:41:35 +0200452 <groupId>org.eclipse.jetty.ee10</groupId>
453 <artifactId>jetty-ee10-webapp</artifactId>
margarethafbfe2872024-01-04 23:29:28 +0100454 <version>${jetty.version}</version>
455 </dependency>
456
margarethafbfe2872024-01-04 23:29:28 +0100457 <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId>
458 <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions>
459 <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId>
460 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId>
461 </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId>
462 <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion>
463 <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId>
464 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId>
465 </exclusion> </exclusions> </dependency> -->
466 <dependency>
467 <groupId>org.apache.httpcomponents</groupId>
468 <artifactId>httpclient</artifactId>
469 <version>4.5.14</version>
470 <exclusions>
471 <exclusion>
472 <groupId>commons-logging</groupId>
473 <artifactId>commons-logging</artifactId>
474 </exclusion>
475 </exclusions>
476 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100477
478 <!-- Database -->
margarethafbfe2872024-01-04 23:29:28 +0100479 <dependency>
margaretha7677aa42024-01-05 10:26:06 +0100480 <groupId>org.xerial</groupId>
481 <artifactId>sqlite-jdbc</artifactId>
dependabot[bot]9e1e84b2025-09-23 09:28:07 +0000482 <version>3.50.3.0</version>
margaretha7677aa42024-01-05 10:26:06 +0100483 </dependency>
484
margarethab9b317d2025-01-23 15:13:47 +0100485
margaretha7677aa42024-01-05 10:26:06 +0100486 <!-- MySql -->
margarethab9b317d2025-01-23 15:13:47 +0100487 <!-- EM: disabled due to high security risk, see CVE-2023-22102
margaretha7677aa42024-01-05 10:26:06 +0100488 <dependency>
489 <groupId>mysql</groupId>
490 <artifactId>mysql-connector-java</artifactId>
491 <version>8.0.30</version>
margarethab9b317d2025-01-23 15:13:47 +0100492 </dependency>-->
margarethafbfe2872024-01-04 23:29:28 +0100493
margaretha7677aa42024-01-05 10:26:06 +0100494 <dependency>
495 <groupId>org.apache.commons</groupId>
496 <artifactId>commons-dbcp2</artifactId>
dependabot[bot]fe7216e2025-09-23 09:27:37 +0000497 <version>2.13.0</version>
margaretha7677aa42024-01-05 10:26:06 +0100498 <exclusions>
499 <exclusion>
500 <groupId>commons-logging</groupId>
501 <artifactId>commons-logging</artifactId>
502 </exclusion>
503 </exclusions>
504 </dependency>
505
506 <!-- Flyway -->
507 <dependency>
508 <groupId>org.flywaydb</groupId>
509 <artifactId>flyway-core</artifactId>
510 <version>${flyway.version}</version>
511 </dependency>
512
margarethafbfe2872024-01-04 23:29:28 +0100513 <!-- Hibernate -->
514 <dependency>
515 <groupId>org.hibernate.orm</groupId>
516 <artifactId>hibernate-core</artifactId>
517 <version>${hibernate.version}</version>
518 </dependency>
519 <dependency>
520 <groupId>org.hibernate.orm</groupId>
521 <artifactId>hibernate-jpamodelgen</artifactId>
522 <version>${hibernate.version}</version>
523 </dependency>
Marc Kupietz93f55f42025-09-25 17:06:33 +0200524 <!-- Remove hibernate-ehcache (Ehcache 2 integration removed in modern Hibernate) -->
margarethafbfe2872024-01-04 23:29:28 +0100525 <dependency>
526 <groupId>org.hibernate.orm</groupId>
527 <artifactId>hibernate-c3p0</artifactId>
528 <version>${hibernate.version}</version>
529 </dependency>
530
531 <dependency>
532 <groupId>org.hibernate.orm</groupId>
533 <artifactId>hibernate-community-dialects</artifactId>
534 <version>${hibernate.version}</version>
535 </dependency>
536
margaretha7677aa42024-01-05 10:26:06 +0100537
margarethafbfe2872024-01-04 23:29:28 +0100538 <!-- Validation -->
539 <dependency>
margaretha10618a02024-02-21 11:06:01 +0100540 <groupId>jakarta.validation</groupId>
541 <artifactId>jakarta.validation-api</artifactId>
dependabot[bot]c2d71ab2025-09-23 09:28:18 +0000542 <version>3.1.1</version>
margaretha10618a02024-02-21 11:06:01 +0100543 </dependency>
544
545 <dependency>
margarethafbfe2872024-01-04 23:29:28 +0100546 <groupId>org.hibernate.validator</groupId>
547 <artifactId>hibernate-validator</artifactId>
dependabot[bot]288849c2025-09-23 09:29:09 +0000548 <version>9.0.1.Final</version>
margarethafbfe2872024-01-04 23:29:28 +0100549 </dependency>
550 <dependency>
551 <groupId>org.glassfish</groupId>
552 <artifactId>jakarta.el</artifactId>
553 <version>4.0.2</version>
margarethafbfe2872024-01-04 23:29:28 +0100554 </dependency>
555
556 <!-- servlet -->
557 <dependency>
558 <groupId>jakarta.persistence</groupId>
559 <artifactId>jakarta.persistence-api</artifactId>
dependabot[bot]a58037b2025-09-23 09:28:33 +0000560 <version>3.2.0</version>
margarethafbfe2872024-01-04 23:29:28 +0100561 </dependency>
dependabot[bot]fe7216e2025-09-23 09:27:37 +0000562 <!-- Ensure jakarta.transaction.* classes are available for Hibernate 6 -->
563 <dependency>
564 <groupId>jakarta.transaction</groupId>
565 <artifactId>jakarta.transaction-api</artifactId>
566 <version>2.0.1</version>
margarethafbfe2872024-01-04 23:29:28 +0100567 </dependency>
568
margarethafbfe2872024-01-04 23:29:28 +0100569 <dependency>
570 <groupId>jakarta.servlet</groupId>
571 <artifactId>jakarta.servlet-api</artifactId>
dependabot[bot]ab8c1382025-09-23 09:28:58 +0000572 <version>6.1.0</version>
margarethafbfe2872024-01-04 23:29:28 +0100573 </dependency>
574
margaretha7677aa42024-01-05 10:26:06 +0100575 <!-- Utilities -->
576 <dependency>
Marc Kupietz93f55f42025-09-25 17:06:33 +0200577 <groupId>net.sf.ehcache</groupId>
578 <artifactId>ehcache</artifactId>
dependabot[bot]cf276e02025-09-30 10:10:39 +0000579 <version>2.10.9.2</version>
Marc Kupietz93f55f42025-09-25 17:06:33 +0200580 </dependency>
581 <dependency>
margaretha7677aa42024-01-05 10:26:06 +0100582 <groupId>joda-time</groupId>
583 <artifactId>joda-time</artifactId>
dependabot[bot]aed7ef02025-09-23 09:28:21 +0000584 <version>2.14.0</version>
margaretha7677aa42024-01-05 10:26:06 +0100585 </dependency>
Marc Kupietz04a6c302025-09-12 19:05:47 +0200586 <!-- Apache Commons Lang 3 (maintained) -->
587 <dependency>
588 <groupId>org.apache.commons</groupId>
589 <artifactId>commons-lang3</artifactId>
dependabot[bot]e8d44532025-09-24 17:08:43 +0000590 <version>3.19.0</version>
Marc Kupietz04a6c302025-09-12 19:05:47 +0200591 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100592 <dependency>
593 <groupId>commons-io</groupId>
594 <artifactId>commons-io</artifactId>
dependabot[bot]23ddec52025-09-23 09:27:53 +0000595 <version>2.20.0</version>
margaretha7677aa42024-01-05 10:26:06 +0100596 </dependency>
597 <dependency>
598 <groupId>commons-validator</groupId>
599 <artifactId>commons-validator</artifactId>
dependabot[bot]4b1cf0d2025-09-23 09:28:30 +0000600 <version>1.10.0</version>
margaretha7677aa42024-01-05 10:26:06 +0100601 <exclusions>
602 <exclusion>
603 <groupId>commons-logging</groupId>
604 <artifactId>commons-logging</artifactId>
605 </exclusion>
606 </exclusions>
607 </dependency>
margarethafbfe2872024-01-04 23:29:28 +0100608 <dependency>
609 <groupId>org.apache.commons</groupId>
610 <artifactId>commons-text</artifactId>
dependabot[bot]d1736f32025-09-23 09:29:01 +0000611 <version>1.14.0</version>
margarethafbfe2872024-01-04 23:29:28 +0100612 </dependency>
margaretha85512f82025-08-07 10:15:17 +0200613 <dependency>
614 <groupId>org.apache.commons</groupId>
615 <artifactId>commons-lang3</artifactId>
616 <version>3.18.0</version>
617 </dependency>
margarethafbfe2872024-01-04 23:29:28 +0100618
619 <!-- LDAP -->
620 <dependency>
621 <groupId>com.novell.ldap</groupId>
622 <artifactId>jldap</artifactId>
623 <version>4.3</version>
624 </dependency>
625 <dependency>
626 <groupId>com.unboundid</groupId>
627 <artifactId>unboundid-ldapsdk</artifactId>
dependabot[bot]aa4e8ff2025-09-23 09:29:04 +0000628 <version>7.0.3</version>
margarethafbfe2872024-01-04 23:29:28 +0100629 </dependency>
630
margarethafbfe2872024-01-04 23:29:28 +0100631 <!-- OAuth -->
632 <dependency>
633 <groupId>com.nimbusds</groupId>
634 <artifactId>oauth2-oidc-sdk</artifactId>
dependabot[bot]e38d0f62025-09-30 17:10:26 +0000635 <version>11.29.2</version>
margarethafbfe2872024-01-04 23:29:28 +0100636 </dependency>
637
638 <!-- Project Lombok -->
639 <dependency>
640 <groupId>org.projectlombok</groupId>
641 <artifactId>lombok</artifactId>
dependabot[bot]b17e3452025-09-23 09:27:57 +0000642 <version>1.18.42</version>
margarethafbfe2872024-01-04 23:29:28 +0100643 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100644
645 <!-- Test -->
margarethafbfe2872024-01-04 23:29:28 +0100646 <dependency>
647 <groupId>org.mock-server</groupId>
648 <artifactId>mockserver-netty</artifactId>
649 <version>5.15.0</version>
650 <scope>test</scope>
651 </dependency>
652 <dependency>
653 <groupId>org.junit.jupiter</groupId>
654 <artifactId>junit-jupiter</artifactId>
dependabot[bot]022c9922025-09-30 10:09:27 +0000655 <version>6.0.0</version>
margarethafbfe2872024-01-04 23:29:28 +0100656 <scope>test</scope>
657 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100658 <!-- Jersey Test -->
659 <dependency>
660 <groupId>org.glassfish.jersey.test-framework</groupId>
661 <artifactId>jersey-test-framework-core</artifactId>
662 <version>${jersey.version}</version>
663 <scope>test</scope>
664 </dependency>
665 <dependency>
666 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
667 <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
668 <version>${jersey.version}</version>
669 <scope>test</scope>
670 </dependency>
671
672
673 <!-- Used in KustvaktClassLoader.java-->
674 <dependency>
675 <groupId>org.reflections</groupId>
676 <artifactId>reflections</artifactId>
677 <version>0.10.2</version>
678 </dependency>
margarethafbfe2872024-01-04 23:29:28 +0100679 </dependencies>
680</project>