blob: 9015395d2796029213fab28223d3eb336ab397c9 [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>
7 <version>0.73-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>
margarethad9d7c392024-01-30 12:14:15 +010014 <spring.version>6.1.3</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>
Marc Kupietzeb9c75e2024-01-21 10:26:50 +010021 <krill.version>[0.62.0,)</krill.version>
22 <koral.version>[0.42,)</koral.version>
margaretha9315c012024-02-19 12:49:17 +010023 <lucene.version>5.0.0</lucene.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>
35 <version>3.5.1</version>
36 <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>
77 </excludes>
78 </filter>
79 </filters>
80 </configuration>
81 </execution>
82 </executions>
83 </plugin>
84 </plugins>
85 </build>
86 </profile>
87
88
89 <profile>
90 <id>lite</id>
91 <build>
92 <plugins>
93 <plugin>
94 <artifactId>maven-shade-plugin</artifactId>
95 <version>3.5.1</version>
96 <executions>
97 <!--option 2 -->
98 <execution>
99 <id>lite</id>
100 <phase>package</phase>
101 <goals>
102 <goal>shade</goal>
103 </goals>
104 <configuration>
105 <finalName>
106 Kustvakt-lite-${project.version}
107 </finalName>
108 <transformers>
109 <transformer
110 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
111 <mainClass>
112 de.ids_mannheim.korap.server.KustvaktLiteServer
113 </mainClass>
114 <manifestEntries>
115 <Multi-Release>true</Multi-Release>
116 </manifestEntries>
117 </transformer>
118 <transformer
119 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
120 <resource>META-INF/spring.handlers
121 </resource>
122 </transformer>
123 <transformer
124 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
125 <resource>META-INF/spring.schemas
126 </resource>
127 </transformer>
128 </transformers>
129 <filters>
130 <filter>
131 <artifact>*:*</artifact>
132 <excludes>
133 <exclude>db/mysql/**</exclude>
134 <exclude>db/predefined/**</exclude>
135 <exclude>db/sqlite/**</exclude>
136 <exclude>db/test/**</exclude>
137 <exclude>com.novell.ldap</exclude>
138 <exclude>com.unboundid</exclude>
139 <exclude>org.glassfish.jersey.test-framework*</exclude>
140 <exclude>org.apache.velocity*</exclude>
141 <exclude>com.sun.mail</exclude>
142 </excludes>
143 </filter>
144 </filters>
145 </configuration>
146 </execution>
147 </executions>
148 </plugin>
149 </plugins>
150 </build>
151 </profile>
152
153 </profiles>
154 <build>
155 <resources>
156 <resource>
157 <directory>src/main/resources</directory>
158 <filtering>true</filtering>
159 <!-- <includes> <include>**/*.info</include> <include>**/*.xml</include>
160 <include>**/*.conf</include> <include>**/*.kustvakt</include> <include>**/*.properties</include>
161 <include>**/*.sql</include> <include>**/*.vm</include> </includes> -->
162 </resource>
163 </resources>
164 <testResources>
165 <testResource>
166 <directory>src/test/resources</directory>
167 </testResource>
168 <testResource>
169 <directory>src/main/resources</directory>
170 <filtering>true</filtering>
171 <includes>
172 <include>**/*.info</include>
173 <include>**/*.json</include>
174 <include>**/*.ldif</include>
175 <include>**/*.properties</include>
176 </includes>
177 </testResource>
178 </testResources>
179 <plugins>
180 <!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html -->
181 <plugin>
182 <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
183 <artifactId>maven-java-formatter-plugin</artifactId>
184 <version>0.4</version>
185 <configuration>
186 <configFile>${project.basedir}/Format.xml</configFile>
187 <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion>
188 <compilerSource>${java.version}</compilerSource>
189 <compilerCompliance>${java.version}</compilerCompliance>
190 <compilerTargetPlatform>${java.version}</compilerTargetPlatform>
191 </configuration>
192 <!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution>
193 </executions> -->
194 </plugin>
195 <plugin>
196 <groupId>org.apache.maven.plugins</groupId>
197 <artifactId>maven-compiler-plugin</artifactId>
198 <version>3.12.1</version>
199 <configuration>
200 <compilerVersion>${java.version}</compilerVersion>
201 <source>${java.version}</source>
202 <target>${java.version}</target>
203 <!-- <compilerArguments> <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
204 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
205 </compilerArguments> -->
206 <annotationProcessors>
207 <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
208 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
209 </annotationProcessors>
210 </configuration>
211 </plugin>
212 <plugin>
213 <groupId>org.apache.maven.plugins</groupId>
214 <artifactId>maven-source-plugin</artifactId>
215 <version>3.3.0</version>
216 <executions>
217 <execution>
218 <id>attach-sources</id>
219 <goals>
220 <goal>jar</goal>
221 </goals>
222 </execution>
223 </executions>
224 </plugin>
225 <plugin>
226 <groupId>org.apache.maven.plugins</groupId>
227 <artifactId>maven-surefire-plugin</artifactId>
margarethad9d7c392024-01-30 12:14:15 +0100228 <version>3.2.5</version>
margarethafbfe2872024-01-04 23:29:28 +0100229 <configuration>
230 <reuseForks>true</reuseForks>
231 <forkCount>1</forkCount>
232 <threadCount>10</threadCount>
233 <argLine>-Xmx512m
234 -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine>
235 <excludes>
236 <exclude>de/ids_mannheim/korap/authentication/APIAuthenticationTest.java</exclude>
237 <exclude>de/ids_mannheim/korap/authentication/AuthenticationFilterTest.java</exclude>
238 <exclude>de/ids_mannheim/korap/authentication/Kustvakt*.java</exclude>
239 <exclude>de/ids_mannheim/korap/authentication/LdapTest.java</exclude>
240 <exclude>de/ids_mannheim/korap/authentication/Random*.java</exclude>
241 <exclude>de/ids_mannheim/korap/web/controller/TokenExpiryTest.java</exclude>
242 <exclude>de/ids_mannheim/korap/web/controller/AdminLoadVCTest.java</exclude>
243 </excludes>
244 <includes>
245 <include>de/ids_mannheim/korap/**/*.java</include>
246 <include>de/ids_mannheim/korap/authentication/LdapAuth3Test.java</include>
247 </includes>
248 </configuration>
249 </plugin>
250 </plugins>
251 </build>
252
253 <dependencies>
margarethafbfe2872024-01-04 23:29:28 +0100254 <dependency>
Marc Kupietzeb9c75e2024-01-21 10:26:50 +0100255 <groupId>de.ids-mannheim.korap.krill</groupId>
margaretha7677aa42024-01-05 10:26:06 +0100256 <artifactId>Krill</artifactId>
257 <version>${krill.version}</version>
258 <exclusions>
259 <exclusion>
260 <groupId>com.fasterxml.jackson.jaxrs</groupId>
261 <artifactId>jackson-jaxrs-json-provider</artifactId>
262 </exclusion>
263 <exclusion>
264 <groupId>org.glassfish.jersey.containers</groupId>
265 <artifactId>jersey-container-grizzly2-http</artifactId>
266 </exclusion>
267 <exclusion>
268 <groupId>org.apache.logging.log4j</groupId>
269 <artifactId>log4j-api</artifactId>
270 </exclusion>
271 <exclusion>
272 <groupId>org.apache.logging.log4j</groupId>
273 <artifactId>log4j-core</artifactId>
274 </exclusion>
275 <exclusion>
276 <groupId>org.apache.logging.log4j</groupId>
277 <artifactId>log4j-slf4j-impl</artifactId>
278 </exclusion>
279 <exclusion>
280 <groupId>org.slf4j</groupId>
281 <artifactId>jul-to-slf4j</artifactId>
282 </exclusion>
283 </exclusions>
margarethafbfe2872024-01-04 23:29:28 +0100284 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100285
286 <dependency>
margaretha9315c012024-02-19 12:49:17 +0100287 <artifactId>lucene-core</artifactId>
288 <groupId>org.apache.lucene</groupId>
289 <type>jar</type>
290 <version>${lucene.version}</version>
291 </dependency>
292
293
294 <dependency>
Marc Kupietzeb9c75e2024-01-21 10:26:50 +0100295 <groupId>de.ids-mannheim.korap.koral</groupId>
margaretha7677aa42024-01-05 10:26:06 +0100296 <artifactId>Koral</artifactId>
297 <version>${koral.version}</version>
298 <exclusions>
299 <exclusion>
300 <groupId>org.apache.logging.log4j</groupId>
301 <artifactId>log4j-api</artifactId>
302 </exclusion>
303 <exclusion>
304 <groupId>org.apache.logging.log4j</groupId>
305 <artifactId>log4j-core</artifactId>
306 </exclusion>
307 <exclusion>
308 <groupId>org.apache.logging.log4j</groupId>
309 <artifactId>log4j-slf4j-impl</artifactId>
310 </exclusion>
311 <exclusion>
312 <groupId>org.apache.logging.log4j</groupId>
313 <artifactId>log4j-jul</artifactId>
314 </exclusion>
315 </exclusions>
316 </dependency>
317
margarethafbfe2872024-01-04 23:29:28 +0100318 <!-- Jersey -->
319 <dependency>
320 <groupId>org.glassfish.jersey.core</groupId>
321 <artifactId>jersey-server</artifactId>
322 <version>${jersey.version}</version>
323 </dependency>
324
325 <dependency>
326 <groupId>org.glassfish.jersey.ext</groupId>
327 <artifactId>jersey-spring6</artifactId>
328 <version>${jersey.version}</version>
329 <!-- as long as we set spring6.version property transitive deps are ok
330 -->
331 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100332
margarethafbfe2872024-01-04 23:29:28 +0100333 <!-- JSON -->
334 <dependency>
335 <groupId>org.glassfish.jersey.media</groupId>
336 <artifactId>jersey-media-json-jackson</artifactId>
337 <version>${jersey.version}</version>
338 <!--<exclusions> <exclusion> <groupId>com.fasterxml.jackson.core</groupId>
339 <artifactId>jackson-annotations</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId>
340 <artifactId>jackson-databind</artifactId> </exclusion> </exclusions> -->
341 </dependency>
342 <dependency>
343 <groupId>net.minidev</groupId>
344 <artifactId>json-smart</artifactId>
345 <version>2.5.0</version>
346 </dependency>
347
margarethafbfe2872024-01-04 23:29:28 +0100348 <!-- Logging -->
349 <dependency>
350 <groupId>org.apache.logging.log4j</groupId>
351 <artifactId>log4j-api</artifactId>
352 <version>${log4j.version}</version>
353 </dependency>
354 <dependency>
355 <groupId>org.apache.logging.log4j</groupId>
356 <artifactId>log4j-core</artifactId>
357 <version>${log4j.version}</version>
358 <exclusions>
359 <exclusion>
360 <groupId>org.apache.logging.log4j</groupId>
361 <artifactId>log4j-api</artifactId>
362 </exclusion>
363 </exclusions>
364 </dependency>
365 <dependency>
366 <groupId>org.apache.logging.log4j</groupId>
367 <artifactId>log4j-slf4j2-impl</artifactId>
368 <version>${log4j.version}</version>
369 </dependency>
370 <dependency>
371 <groupId>org.apache.logging.log4j</groupId>
372 <artifactId>log4j-jul</artifactId>
373 <version>${log4j.version}</version>
374 <exclusions>
375 <exclusion>
376 <groupId>org.apache.logging.log4j</groupId>
377 <artifactId>log4j-api</artifactId>
378 </exclusion>
379 </exclusions>
380 </dependency>
381 <dependency>
382 <groupId>org.slf4j</groupId>
383 <artifactId>slf4j-api</artifactId>
margarethad9d7c392024-01-30 12:14:15 +0100384 <version>2.0.11</version>
margarethafbfe2872024-01-04 23:29:28 +0100385 </dependency>
386
387 <!-- Java Assist -->
388 <dependency>
389 <groupId>org.javassist</groupId>
390 <artifactId>javassist</artifactId>
391 <version>3.30.2-GA</version>
392 </dependency>
393
margaretha7677aa42024-01-05 10:26:06 +0100394 <!-- Encryption -->
margarethafbfe2872024-01-04 23:29:28 +0100395 <dependency>
396 <groupId>org.mindrot</groupId>
397 <artifactId>jbcrypt</artifactId>
398 <version>0.4</version>
399 </dependency>
400
margarethafbfe2872024-01-04 23:29:28 +0100401 <!-- Spring -->
402 <dependency>
403 <groupId>org.springframework</groupId>
404 <artifactId>spring-core</artifactId>
405 <version>${spring.version}</version>
406 </dependency>
407 <dependency>
408 <groupId>org.springframework</groupId>
409 <artifactId>spring-web</artifactId>
410 <version>${spring.version}</version>
411 </dependency>
412 <dependency>
413 <groupId>org.springframework</groupId>
414 <artifactId>spring-orm</artifactId>
415 <version>${spring.version}</version>
416 </dependency>
417
margarethafbfe2872024-01-04 23:29:28 +0100418 <dependency>
419 <groupId>org.springframework</groupId>
420 <artifactId>spring-context</artifactId>
421 <version>${spring.version}</version>
422 </dependency>
423 <dependency>
424 <groupId>org.springframework</groupId>
425 <artifactId>spring-context-support</artifactId>
426 <version>${spring.version}</version>
427 </dependency>
428 <dependency>
429 <groupId>org.springframework</groupId>
430 <artifactId>spring-test</artifactId>
431 <version>${spring.version}</version>
432 <scope>compile</scope>
433 </dependency>
434
435 <!-- apparently this order prevents the spring schemas from being overriden
436 in META-INF/spring.schemas, thus must stay like this -->
437 <dependency>
438 <groupId>org.springframework</groupId>
439 <artifactId>spring-aop</artifactId>
440 <version>${spring.version}</version>
441 </dependency>
442 <dependency>
443 <groupId>org.springframework</groupId>
444 <artifactId>spring-aspects</artifactId>
445 <version>${spring.version}</version>
446 </dependency>
447
margarethafbfe2872024-01-04 23:29:28 +0100448 <!-- jetty -->
449 <dependency>
450 <groupId>org.eclipse.jetty</groupId>
451 <artifactId>jetty-server</artifactId>
452 <version>${jetty.version}</version>
453 </dependency>
454 <dependency>
455 <groupId>org.eclipse.jetty</groupId>
456 <artifactId>jetty-servlet</artifactId>
457 <version>${jetty.version}</version>
458 </dependency>
459 <dependency>
460 <groupId>org.eclipse.jetty</groupId>
461 <artifactId>jetty-webapp</artifactId>
462 <version>${jetty.version}</version>
463 </dependency>
464
margarethafbfe2872024-01-04 23:29:28 +0100465 <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId>
466 <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions>
467 <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId>
468 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId>
469 </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId>
470 <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion>
471 <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId>
472 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId>
473 </exclusion> </exclusions> </dependency> -->
474 <dependency>
475 <groupId>org.apache.httpcomponents</groupId>
476 <artifactId>httpclient</artifactId>
477 <version>4.5.14</version>
478 <exclusions>
479 <exclusion>
480 <groupId>commons-logging</groupId>
481 <artifactId>commons-logging</artifactId>
482 </exclusion>
483 </exclusions>
484 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100485
486 <!-- Database -->
margarethafbfe2872024-01-04 23:29:28 +0100487 <dependency>
margaretha7677aa42024-01-05 10:26:06 +0100488 <groupId>org.xerial</groupId>
489 <artifactId>sqlite-jdbc</artifactId>
margarethad9d7c392024-01-30 12:14:15 +0100490 <version>3.45.0.0</version>
margaretha7677aa42024-01-05 10:26:06 +0100491 </dependency>
492
493 <!-- MySql -->
494 <dependency>
495 <groupId>mysql</groupId>
496 <artifactId>mysql-connector-java</artifactId>
497 <version>8.0.30</version>
margarethafbfe2872024-01-04 23:29:28 +0100498 </dependency>
499
margaretha7677aa42024-01-05 10:26:06 +0100500 <dependency>
501 <groupId>org.apache.commons</groupId>
502 <artifactId>commons-dbcp2</artifactId>
503 <version>2.9.0</version>
504 <exclusions>
505 <exclusion>
506 <groupId>commons-logging</groupId>
507 <artifactId>commons-logging</artifactId>
508 </exclusion>
509 </exclusions>
510 </dependency>
511
512 <!-- Flyway -->
513 <dependency>
514 <groupId>org.flywaydb</groupId>
515 <artifactId>flyway-core</artifactId>
516 <version>${flyway.version}</version>
517 </dependency>
518
margarethafbfe2872024-01-04 23:29:28 +0100519 <!-- Hibernate -->
520 <dependency>
521 <groupId>org.hibernate.orm</groupId>
522 <artifactId>hibernate-core</artifactId>
523 <version>${hibernate.version}</version>
524 </dependency>
525 <dependency>
526 <groupId>org.hibernate.orm</groupId>
527 <artifactId>hibernate-jpamodelgen</artifactId>
528 <version>${hibernate.version}</version>
529 </dependency>
530 <dependency>
531 <groupId>org.hibernate.orm</groupId>
532 <artifactId>hibernate-ehcache</artifactId>
533 <version>${hibernate.ehcache.version}</version>
534 <exclusions>
535 <exclusion>
536 <groupId>org.hibernate</groupId>
537 <artifactId>hibernate-core</artifactId>
538 </exclusion>
539 </exclusions>
540 </dependency>
541 <dependency>
542 <groupId>org.hibernate.orm</groupId>
543 <artifactId>hibernate-c3p0</artifactId>
544 <version>${hibernate.version}</version>
545 </dependency>
546
547 <dependency>
548 <groupId>org.hibernate.orm</groupId>
549 <artifactId>hibernate-community-dialects</artifactId>
550 <version>${hibernate.version}</version>
551 </dependency>
552
margaretha7677aa42024-01-05 10:26:06 +0100553
margarethafbfe2872024-01-04 23:29:28 +0100554 <!-- Validation -->
555 <dependency>
556 <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>
564 <scope>test</scope>
565 </dependency>
566
567 <!-- servlet -->
568 <dependency>
569 <groupId>jakarta.persistence</groupId>
570 <artifactId>jakarta.persistence-api</artifactId>
571 <version>3.1.0</version>
572 </dependency>
573
margarethafbfe2872024-01-04 23:29:28 +0100574 <dependency>
575 <groupId>jakarta.servlet</groupId>
576 <artifactId>jakarta.servlet-api</artifactId>
577 <version>6.0.0</version>
578 <scope>provided</scope>
579 </dependency>
580
margaretha7677aa42024-01-05 10:26:06 +0100581 <!-- Utilities -->
582 <dependency>
583 <groupId>joda-time</groupId>
584 <artifactId>joda-time</artifactId>
margarethad9d7c392024-01-30 12:14:15 +0100585 <version>2.12.6</version>
margaretha7677aa42024-01-05 10:26:06 +0100586 </dependency>
587 <dependency>
588 <groupId>commons-io</groupId>
589 <artifactId>commons-io</artifactId>
590 <version>2.15.1</version>
591 </dependency>
592 <dependency>
593 <groupId>commons-validator</groupId>
594 <artifactId>commons-validator</artifactId>
595 <version>1.8.0</version>
596 <exclusions>
597 <exclusion>
598 <groupId>commons-logging</groupId>
599 <artifactId>commons-logging</artifactId>
600 </exclusion>
601 </exclusions>
602 </dependency>
margarethafbfe2872024-01-04 23:29:28 +0100603 <dependency>
604 <groupId>org.apache.commons</groupId>
605 <artifactId>commons-text</artifactId>
606 <version>1.11.0</version>
607 </dependency>
margarethafbfe2872024-01-04 23:29:28 +0100608
609 <!-- LDAP -->
610 <dependency>
611 <groupId>com.novell.ldap</groupId>
612 <artifactId>jldap</artifactId>
613 <version>4.3</version>
614 </dependency>
615 <dependency>
616 <groupId>com.unboundid</groupId>
617 <artifactId>unboundid-ldapsdk</artifactId>
618 <version>6.0.11</version>
619 </dependency>
620
margarethafbfe2872024-01-04 23:29:28 +0100621 <!-- velocity -->
622 <dependency>
623 <groupId>org.apache.velocity</groupId>
624 <artifactId>velocity-engine-core</artifactId>
625 <version>2.3</version>
626 </dependency>
627 <dependency>
628 <groupId>org.apache.velocity.tools</groupId>
629 <artifactId>velocity-tools-generic</artifactId>
630 <version>3.1</version>
631 <exclusions>
632 <exclusion>
633 <groupId>commons-logging</groupId>
634 <artifactId>commons-logging</artifactId>
635 </exclusion>
636 </exclusions>
637 </dependency>
638
639 <!-- Mail -->
640 <dependency>
641 <groupId>com.sun.mail</groupId>
642 <artifactId>jakarta.mail</artifactId>
643 <version>2.0.1</version>
644 </dependency>
645
646 <dependency>
647 <groupId>jakarta.activation</groupId>
648 <artifactId>jakarta.activation-api</artifactId>
649 <version>2.1.2</version>
650 </dependency>
651
652 <!-- OAuth -->
653 <dependency>
654 <groupId>com.nimbusds</groupId>
655 <artifactId>oauth2-oidc-sdk</artifactId>
dependabot[bot]6be1db22024-01-08 17:40:42 +0000656 <version>11.9.1</version>
margarethafbfe2872024-01-04 23:29:28 +0100657 </dependency>
658
659 <!-- Project Lombok -->
660 <dependency>
661 <groupId>org.projectlombok</groupId>
662 <artifactId>lombok</artifactId>
663 <version>1.18.30</version>
664 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100665
666 <!-- Test -->
margarethafbfe2872024-01-04 23:29:28 +0100667 <dependency>
668 <groupId>org.mock-server</groupId>
669 <artifactId>mockserver-netty</artifactId>
670 <version>5.15.0</version>
671 <scope>test</scope>
672 </dependency>
673 <dependency>
674 <groupId>org.junit.jupiter</groupId>
675 <artifactId>junit-jupiter</artifactId>
676 <version>5.10.1</version>
677 <scope>test</scope>
678 </dependency>
margaretha7677aa42024-01-05 10:26:06 +0100679 <!-- Jersey Test -->
680 <dependency>
681 <groupId>org.glassfish.jersey.test-framework</groupId>
682 <artifactId>jersey-test-framework-core</artifactId>
683 <version>${jersey.version}</version>
684 <scope>test</scope>
685 </dependency>
686 <dependency>
687 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
688 <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
689 <version>${jersey.version}</version>
690 <scope>test</scope>
691 </dependency>
692
693
694 <!-- Used in KustvaktClassLoader.java-->
695 <dependency>
696 <groupId>org.reflections</groupId>
697 <artifactId>reflections</artifactId>
698 <version>0.10.2</version>
699 </dependency>
margarethafbfe2872024-01-04 23:29:28 +0100700 </dependencies>
701</project>