blob: 906e21e293db93c4485b48ce538ebf0cd4153417 [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>
margaretha10618a02024-02-21 11:06:01 +01007 <version>0.73.1-SNAPSHOT</version>
margarethafbfe2872024-01-04 23:29:28 +01008 <properties>
9 <java.version>17</java.version>
10 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11 <jersey.version>3.1.5</jersey.version>
12 <hibernate.ehcache.version>6.0.0.Alpha7</hibernate.ehcache.version>
13 <hibernate.version>6.1.7.Final</hibernate.version>
dependabot[bot]399c6ae2024-03-18 16:22:08 +000014 <spring.version>6.1.5</spring.version>
margarethafbfe2872024-01-04 23:29:28 +010015 <!-- spring6.version is used in jersey and defined here
16 to make sure that jersey uses the correct spring version-->
17 <spring6.version>${spring.version}</spring6.version>
18 <jetty.version>11.0.19</jetty.version>
margarethad9d7c392024-01-30 12:14:15 +010019 <flyway.version>10.6.0</flyway.version>
margarethafbfe2872024-01-04 23:29:28 +010020 <log4j.version>2.22.1</log4j.version>
margaretha8f0c85e2024-02-19 15:42:40 +010021 <krill.version>[0.62.2,)</krill.version>
Marc Kupietzeb9c75e2024-01-21 10:26:50 +010022 <koral.version>[0.42,)</koral.version>
margarethafbfe2872024-01-04 23:29:28 +010023 </properties>
24 <profiles>
25 <profile>
26 <id>full</id>
27 <activation>
28 <activeByDefault>true</activeByDefault>
29 </activation>
30 <build>
31 <plugins>
32 <plugin>
33 <artifactId>maven-shade-plugin</artifactId>
34 <version>3.5.1</version>
35 <executions>
36 <!-- option 1 -->
37 <execution>
38 <id>full</id>
39 <phase>package</phase>
40 <goals>
41 <goal>shade</goal>
42 </goals>
43 <configuration>
44 <finalName>Kustvakt-full-${project.version}</finalName>
45 <transformers>
46 <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
47 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
48 <mainClass>
49 de.ids_mannheim.korap.server.KustvaktServer
50 </mainClass>
51 <manifestEntries>
52 <Multi-Release>true</Multi-Release>
53 </manifestEntries>
54 </transformer>
55 <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
56 <resource>META-INF/spring.handlers</resource>
57 </transformer>
58 <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
59 <resource>META-INF/spring.schemas</resource>
60 </transformer>
61 <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
62 <resource>META-INF/spring/aot.factories</resource>
63 </transformer>
64 <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
65 <resource>META-INF/hk2-locator/default</resource>
66 </transformer>
67 <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
68 <resource>META-INF/spring.tooling</resource>
69 </transformer>
70 </transformers>
71 <filters>
72 <filter>
73 <artifact>*:*</artifact>
74 <excludes>
75 <exclude>db/lite/**</exclude>
margarethacd12b372024-04-10 09:48:28 +020076 <exclude>META-INF/*.SF</exclude>
77 <exclude>META-INF/*.DSA</exclude>
78 <exclude>META-INF/*.RSA</exclude>
margarethafbfe2872024-01-04 23:29:28 +010079 </excludes>
80 </filter>
81 </filters>
82 </configuration>
83 </execution>
84 </executions>
85 </plugin>
86 </plugins>
87 </build>
88 </profile>
89
90
91 <profile>
92 <id>lite</id>
93 <build>
94 <plugins>
95 <plugin>
96 <artifactId>maven-shade-plugin</artifactId>
97 <version>3.5.1</version>
98 <executions>
99 <!--option 2 -->
100 <execution>
101 <id>lite</id>
102 <phase>package</phase>
103 <goals>
104 <goal>shade</goal>
105 </goals>
106 <configuration>
107 <finalName>
108 Kustvakt-lite-${project.version}
109 </finalName>
110 <transformers>
111 <transformer
112 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
113 <mainClass>
114 de.ids_mannheim.korap.server.KustvaktLiteServer
115 </mainClass>
116 <manifestEntries>
117 <Multi-Release>true</Multi-Release>
118 </manifestEntries>
119 </transformer>
120 <transformer
121 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
122 <resource>META-INF/spring.handlers
123 </resource>
124 </transformer>
125 <transformer
126 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
127 <resource>META-INF/spring.schemas
128 </resource>
129 </transformer>
130 </transformers>
131 <filters>
132 <filter>
133 <artifact>*:*</artifact>
134 <excludes>
135 <exclude>db/mysql/**</exclude>
136 <exclude>db/predefined/**</exclude>
137 <exclude>db/sqlite/**</exclude>
138 <exclude>db/test/**</exclude>
139 <exclude>com.novell.ldap</exclude>
140 <exclude>com.unboundid</exclude>
141 <exclude>org.glassfish.jersey.test-framework*</exclude>
142 <exclude>org.apache.velocity*</exclude>
143 <exclude>com.sun.mail</exclude>
144 </excludes>
145 </filter>
146 </filters>
147 </configuration>
148 </execution>
149 </executions>
150 </plugin>
151 </plugins>
152 </build>
153 </profile>
154
155 </profiles>
156 <build>
157 <resources>
158 <resource>
159 <directory>src/main/resources</directory>
160 <filtering>true</filtering>
161 <!-- <includes> <include>**/*.info</include> <include>**/*.xml</include>
162 <include>**/*.conf</include> <include>**/*.kustvakt</include> <include>**/*.properties</include>
163 <include>**/*.sql</include> <include>**/*.vm</include> </includes> -->
164 </resource>
165 </resources>
166 <testResources>
167 <testResource>
168 <directory>src/test/resources</directory>
169 </testResource>
170 <testResource>
171 <directory>src/main/resources</directory>
172 <filtering>true</filtering>
173 <includes>
174 <include>**/*.info</include>
175 <include>**/*.json</include>
176 <include>**/*.ldif</include>
177 <include>**/*.properties</include>
178 </includes>
179 </testResource>
180 </testResources>
181 <plugins>
182 <!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html -->
183 <plugin>
184 <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
185 <artifactId>maven-java-formatter-plugin</artifactId>
186 <version>0.4</version>
187 <configuration>
188 <configFile>${project.basedir}/Format.xml</configFile>
189 <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion>
190 <compilerSource>${java.version}</compilerSource>
191 <compilerCompliance>${java.version}</compilerCompliance>
192 <compilerTargetPlatform>${java.version}</compilerTargetPlatform>
193 </configuration>
194 <!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution>
195 </executions> -->
196 </plugin>
197 <plugin>
198 <groupId>org.apache.maven.plugins</groupId>
199 <artifactId>maven-compiler-plugin</artifactId>
200 <version>3.12.1</version>
201 <configuration>
202 <compilerVersion>${java.version}</compilerVersion>
203 <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>
217 <version>3.3.0</version>
218 <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>
margarethad9d7c392024-01-30 12:14:15 +0100230 <version>3.2.5</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>
336 <dependency>
337 <groupId>net.minidev</groupId>
338 <artifactId>json-smart</artifactId>
339 <version>2.5.0</version>
340 </dependency>
341
margarethafbfe2872024-01-04 23:29:28 +0100342 <!-- Logging -->
343 <dependency>
344 <groupId>org.apache.logging.log4j</groupId>
345 <artifactId>log4j-api</artifactId>
346 <version>${log4j.version}</version>
347 </dependency>
348 <dependency>
349 <groupId>org.apache.logging.log4j</groupId>
350 <artifactId>log4j-core</artifactId>
351 <version>${log4j.version}</version>
352 <exclusions>
353 <exclusion>
354 <groupId>org.apache.logging.log4j</groupId>
355 <artifactId>log4j-api</artifactId>
356 </exclusion>
357 </exclusions>
358 </dependency>
359 <dependency>
360 <groupId>org.apache.logging.log4j</groupId>
361 <artifactId>log4j-slf4j2-impl</artifactId>
362 <version>${log4j.version}</version>
363 </dependency>
364 <dependency>
365 <groupId>org.apache.logging.log4j</groupId>
366 <artifactId>log4j-jul</artifactId>
367 <version>${log4j.version}</version>
368 <exclusions>
369 <exclusion>
370 <groupId>org.apache.logging.log4j</groupId>
371 <artifactId>log4j-api</artifactId>
372 </exclusion>
373 </exclusions>
374 </dependency>
375 <dependency>
376 <groupId>org.slf4j</groupId>
377 <artifactId>slf4j-api</artifactId>
margarethad9d7c392024-01-30 12:14:15 +0100378 <version>2.0.11</version>
margarethafbfe2872024-01-04 23:29:28 +0100379 </dependency>
380
381 <!-- Java Assist -->
382 <dependency>
383 <groupId>org.javassist</groupId>
384 <artifactId>javassist</artifactId>
385 <version>3.30.2-GA</version>
386 </dependency>
387
margaretha7677aa42024-01-05 10:26:06 +0100388 <!-- Encryption -->
margarethafbfe2872024-01-04 23:29:28 +0100389 <dependency>
390 <groupId>org.mindrot</groupId>
391 <artifactId>jbcrypt</artifactId>
392 <version>0.4</version>
393 </dependency>
394
margarethafbfe2872024-01-04 23:29:28 +0100395 <!-- Spring -->
396 <dependency>
397 <groupId>org.springframework</groupId>
398 <artifactId>spring-core</artifactId>
399 <version>${spring.version}</version>
400 </dependency>
401 <dependency>
402 <groupId>org.springframework</groupId>
403 <artifactId>spring-web</artifactId>
404 <version>${spring.version}</version>
405 </dependency>
406 <dependency>
407 <groupId>org.springframework</groupId>
408 <artifactId>spring-orm</artifactId>
409 <version>${spring.version}</version>
410 </dependency>
411
margarethafbfe2872024-01-04 23:29:28 +0100412 <dependency>
413 <groupId>org.springframework</groupId>
414 <artifactId>spring-context</artifactId>
415 <version>${spring.version}</version>
416 </dependency>
417 <dependency>
418 <groupId>org.springframework</groupId>
419 <artifactId>spring-context-support</artifactId>
420 <version>${spring.version}</version>
421 </dependency>
422 <dependency>
423 <groupId>org.springframework</groupId>
424 <artifactId>spring-test</artifactId>
425 <version>${spring.version}</version>
426 <scope>compile</scope>
427 </dependency>
428
429 <!-- apparently this order prevents the spring schemas from being overriden
430 in META-INF/spring.schemas, thus must stay like this -->
431 <dependency>
432 <groupId>org.springframework</groupId>
433 <artifactId>spring-aop</artifactId>
434 <version>${spring.version}</version>
435 </dependency>
436 <dependency>
437 <groupId>org.springframework</groupId>
438 <artifactId>spring-aspects</artifactId>
439 <version>${spring.version}</version>
440 </dependency>
441
margarethafbfe2872024-01-04 23:29:28 +0100442 <!-- jetty -->
443 <dependency>
444 <groupId>org.eclipse.jetty</groupId>
445 <artifactId>jetty-server</artifactId>
446 <version>${jetty.version}</version>
447 </dependency>
448 <dependency>
449 <groupId>org.eclipse.jetty</groupId>
450 <artifactId>jetty-servlet</artifactId>
451 <version>${jetty.version}</version>
452 </dependency>
453 <dependency>
454 <groupId>org.eclipse.jetty</groupId>
455 <artifactId>jetty-webapp</artifactId>
456 <version>${jetty.version}</version>
457 </dependency>
458
margarethafbfe2872024-01-04 23:29:28 +0100459 <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId>
460 <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions>
461 <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId>
462 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId>
463 </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId>
464 <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion>
465 <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId>
466 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId>
467 </exclusion> </exclusions> </dependency> -->
468 <dependency>
469 <groupId>org.apache.httpcomponents</groupId>
470 <artifactId>httpclient</artifactId>
471 <version>4.5.14</version>
472 <exclusions>
473 <exclusion>
474 <groupId>commons-logging</groupId>
475 <artifactId>commons-logging</artifactId>
476 </exclusion>
477 </exclusions>
478 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100479
480 <!-- Database -->
margarethafbfe2872024-01-04 23:29:28 +0100481 <dependency>
margaretha7677aa42024-01-05 10:26:06 +0100482 <groupId>org.xerial</groupId>
483 <artifactId>sqlite-jdbc</artifactId>
margarethad9d7c392024-01-30 12:14:15 +0100484 <version>3.45.0.0</version>
margaretha7677aa42024-01-05 10:26:06 +0100485 </dependency>
486
487 <!-- MySql -->
488 <dependency>
489 <groupId>mysql</groupId>
490 <artifactId>mysql-connector-java</artifactId>
491 <version>8.0.30</version>
margarethafbfe2872024-01-04 23:29:28 +0100492 </dependency>
493
margaretha7677aa42024-01-05 10:26:06 +0100494 <dependency>
495 <groupId>org.apache.commons</groupId>
496 <artifactId>commons-dbcp2</artifactId>
497 <version>2.9.0</version>
498 <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>
524 <dependency>
525 <groupId>org.hibernate.orm</groupId>
526 <artifactId>hibernate-ehcache</artifactId>
527 <version>${hibernate.ehcache.version}</version>
528 <exclusions>
529 <exclusion>
530 <groupId>org.hibernate</groupId>
531 <artifactId>hibernate-core</artifactId>
532 </exclusion>
533 </exclusions>
534 </dependency>
535 <dependency>
536 <groupId>org.hibernate.orm</groupId>
537 <artifactId>hibernate-c3p0</artifactId>
538 <version>${hibernate.version}</version>
539 </dependency>
540
541 <dependency>
542 <groupId>org.hibernate.orm</groupId>
543 <artifactId>hibernate-community-dialects</artifactId>
544 <version>${hibernate.version}</version>
545 </dependency>
546
margaretha7677aa42024-01-05 10:26:06 +0100547
margarethafbfe2872024-01-04 23:29:28 +0100548 <!-- Validation -->
549 <dependency>
margaretha10618a02024-02-21 11:06:01 +0100550 <groupId>jakarta.validation</groupId>
551 <artifactId>jakarta.validation-api</artifactId>
552 <version>3.0.2</version>
553 </dependency>
554
555 <dependency>
margarethafbfe2872024-01-04 23:29:28 +0100556 <groupId>org.hibernate.validator</groupId>
557 <artifactId>hibernate-validator</artifactId>
558 <version>8.0.1.Final</version>
559 </dependency>
560 <dependency>
561 <groupId>org.glassfish</groupId>
562 <artifactId>jakarta.el</artifactId>
563 <version>4.0.2</version>
margarethafbfe2872024-01-04 23:29:28 +0100564 </dependency>
565
566 <!-- servlet -->
567 <dependency>
568 <groupId>jakarta.persistence</groupId>
569 <artifactId>jakarta.persistence-api</artifactId>
570 <version>3.1.0</version>
571 </dependency>
572
margarethafbfe2872024-01-04 23:29:28 +0100573 <dependency>
574 <groupId>jakarta.servlet</groupId>
575 <artifactId>jakarta.servlet-api</artifactId>
576 <version>6.0.0</version>
577 <scope>provided</scope>
578 </dependency>
579
margaretha7677aa42024-01-05 10:26:06 +0100580 <!-- Utilities -->
581 <dependency>
582 <groupId>joda-time</groupId>
583 <artifactId>joda-time</artifactId>
margarethad9d7c392024-01-30 12:14:15 +0100584 <version>2.12.6</version>
margaretha7677aa42024-01-05 10:26:06 +0100585 </dependency>
586 <dependency>
587 <groupId>commons-io</groupId>
588 <artifactId>commons-io</artifactId>
589 <version>2.15.1</version>
590 </dependency>
591 <dependency>
592 <groupId>commons-validator</groupId>
593 <artifactId>commons-validator</artifactId>
594 <version>1.8.0</version>
595 <exclusions>
596 <exclusion>
597 <groupId>commons-logging</groupId>
598 <artifactId>commons-logging</artifactId>
599 </exclusion>
600 </exclusions>
601 </dependency>
margarethafbfe2872024-01-04 23:29:28 +0100602 <dependency>
603 <groupId>org.apache.commons</groupId>
604 <artifactId>commons-text</artifactId>
605 <version>1.11.0</version>
606 </dependency>
margarethafbfe2872024-01-04 23:29:28 +0100607
608 <!-- LDAP -->
609 <dependency>
610 <groupId>com.novell.ldap</groupId>
611 <artifactId>jldap</artifactId>
612 <version>4.3</version>
613 </dependency>
614 <dependency>
615 <groupId>com.unboundid</groupId>
616 <artifactId>unboundid-ldapsdk</artifactId>
617 <version>6.0.11</version>
618 </dependency>
619
margarethafbfe2872024-01-04 23:29:28 +0100620 <!-- velocity -->
621 <dependency>
622 <groupId>org.apache.velocity</groupId>
623 <artifactId>velocity-engine-core</artifactId>
624 <version>2.3</version>
625 </dependency>
626 <dependency>
627 <groupId>org.apache.velocity.tools</groupId>
628 <artifactId>velocity-tools-generic</artifactId>
629 <version>3.1</version>
630 <exclusions>
631 <exclusion>
632 <groupId>commons-logging</groupId>
633 <artifactId>commons-logging</artifactId>
634 </exclusion>
635 </exclusions>
636 </dependency>
637
638 <!-- Mail -->
639 <dependency>
640 <groupId>com.sun.mail</groupId>
641 <artifactId>jakarta.mail</artifactId>
642 <version>2.0.1</version>
643 </dependency>
644
645 <dependency>
646 <groupId>jakarta.activation</groupId>
647 <artifactId>jakarta.activation-api</artifactId>
648 <version>2.1.2</version>
649 </dependency>
650
651 <!-- OAuth -->
652 <dependency>
653 <groupId>com.nimbusds</groupId>
654 <artifactId>oauth2-oidc-sdk</artifactId>
dependabot[bot]6be1db22024-01-08 17:40:42 +0000655 <version>11.9.1</version>
margarethafbfe2872024-01-04 23:29:28 +0100656 </dependency>
657
658 <!-- Project Lombok -->
659 <dependency>
660 <groupId>org.projectlombok</groupId>
661 <artifactId>lombok</artifactId>
662 <version>1.18.30</version>
663 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100664
665 <!-- Test -->
margarethafbfe2872024-01-04 23:29:28 +0100666 <dependency>
667 <groupId>org.mock-server</groupId>
668 <artifactId>mockserver-netty</artifactId>
669 <version>5.15.0</version>
670 <scope>test</scope>
671 </dependency>
672 <dependency>
673 <groupId>org.junit.jupiter</groupId>
674 <artifactId>junit-jupiter</artifactId>
675 <version>5.10.1</version>
676 <scope>test</scope>
677 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100678 <!-- Jersey Test -->
679 <dependency>
680 <groupId>org.glassfish.jersey.test-framework</groupId>
681 <artifactId>jersey-test-framework-core</artifactId>
682 <version>${jersey.version}</version>
683 <scope>test</scope>
684 </dependency>
685 <dependency>
686 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
687 <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
688 <version>${jersey.version}</version>
689 <scope>test</scope>
690 </dependency>
691
692
693 <!-- Used in KustvaktClassLoader.java-->
694 <dependency>
695 <groupId>org.reflections</groupId>
696 <artifactId>reflections</artifactId>
697 <version>0.10.2</version>
698 </dependency>
margarethafbfe2872024-01-04 23:29:28 +0100699 </dependencies>
700</project>