blob: e2b266922937383d618b735bb926841b007858e0 [file] [log] [blame]
margarethaf68daa62017-09-21 02:11:24 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>de.ids_mannheim.korap</groupId>
5 <artifactId>Kustvakt-full</artifactId>
margaretha3a616b42023-05-19 13:27:16 +02006 <version>0.71</version>
margarethaf68daa62017-09-21 02:11:24 +02007 <properties>
abcpro10c746892022-11-03 22:47:04 +00008 <java.version>11</java.version>
margarethaf68daa62017-09-21 02:11:24 +02009 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
dependabot[bot]7cc9dd72023-03-23 17:56:32 +000010 <jersey.version>2.39.1</jersey.version>
dependabot[bot]38cd4872023-02-06 17:00:54 +000011 <hibernate.version>5.6.15.Final</hibernate.version>
margaretha6a925fe2023-05-15 16:50:32 +020012 <spring.version>5.3.27</spring.version>
13 <jetty.version>9.4.51.v20230217</jetty.version>
dependabot[bot]d94df822023-06-09 17:56:29 +000014 <flyway.version>9.19.4</flyway.version>
dependabot[bot]77606532023-05-16 17:57:39 +000015 <log4j.version>2.20.0</log4j.version>
margaretha6a925fe2023-05-15 16:50:32 +020016 <krill.version>[0.61.2,)</krill.version>
17 <koral.version>[0.39.1,)</koral.version>
margarethaf68daa62017-09-21 02:11:24 +020018 </properties>
margaretha34954472018-10-24 20:05:17 +020019 <profiles>
20 <profile>
21 <id>full</id>
22 <activation>
23 <activeByDefault>true</activeByDefault>
24 </activation>
25 <build>
26 <plugins>
27 <plugin>
28 <artifactId>maven-shade-plugin</artifactId>
dependabot[bot]bfbfc432022-10-27 17:02:10 +000029 <version>3.4.1</version>
margaretha34954472018-10-24 20:05:17 +020030 <executions>
31 <!-- option 1 -->
32 <execution>
33 <id>full</id>
34 <phase>package</phase>
35 <goals>
36 <goal>shade</goal>
37 </goals>
38 <configuration>
39 <finalName>Kustvakt-full-${project.version}</finalName>
40 <transformers>
41 <transformer
42 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
43 <mainClass>
44 de.ids_mannheim.korap.server.KustvaktServer
45 </mainClass>
46 </transformer>
47 <transformer
48 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
49 <resource>META-INF/spring.handlers
50 </resource>
51 </transformer>
52 <transformer
53 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
54 <resource>META-INF/spring.schemas
55 </resource>
56 </transformer>
57 </transformers>
margaretha34954472018-10-24 20:05:17 +020058 <filters>
margaretha92ad2ec2023-05-15 14:10:00 +020059 <filter>
60 <artifact>*:*</artifact>
61 <excludes>
62 <exclude>db/lite/**</exclude>
63 </excludes>
64 </filter>
65 </filters>
margaretha34954472018-10-24 20:05:17 +020066 </configuration>
67 </execution>
68 </executions>
69 </plugin>
70 </plugins>
71 </build>
72 </profile>
margaretha92ad2ec2023-05-15 14:10:00 +020073
74
75 <profile>
76 <id>lite</id>
77 <build>
78 <plugins>
79 <plugin>
80 <artifactId>maven-shade-plugin</artifactId>
81 <version>3.4.1</version>
82 <executions>
83 <!--option 2-->
84 <execution>
85 <id>lite</id>
86 <phase>package</phase>
87 <goals>
88 <goal>shade</goal>
89 </goals>
90 <configuration>
91 <finalName>
92 Kustvakt-lite-${project.version}
93 </finalName>
94 <transformers>
95 <transformer
96 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
97 <mainClass>
98 de.ids_mannheim.korap.server.KustvaktLiteServer
99 </mainClass>
100 </transformer>
101 <transformer
102 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
103 <resource>META-INF/spring.handlers
104 </resource>
105 </transformer>
106 <transformer
107 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
108 <resource>META-INF/spring.schemas
109 </resource>
110 </transformer>
111 </transformers>
112 <filters>
113 <filter>
114 <artifact>*:*</artifact>
115 <excludes>
116 <exclude>db/mysql/**</exclude>
117 <exclude>db/predefined/**</exclude>
118 <exclude>db/sqlite/**</exclude>
119 <exclude>db/test/**</exclude>
120 <exclude>com.novell.ldap</exclude>
121 <exclude>com.unboundid</exclude>
122 <exclude>org.glassfish.jersey.test-framework*</exclude>
123 <exclude>org.apache.velocity*</exclude>
124 <exclude>com.sun.mail</exclude>
125 <exclude>javax.activation</exclude>
126 </excludes>
127 </filter>
128 </filters>
129 </configuration>
130 </execution>
131 </executions>
132 </plugin>
133 </plugins>
134 </build>
135 </profile>
136
margaretha34954472018-10-24 20:05:17 +0200137 </profiles>
margarethaf68daa62017-09-21 02:11:24 +0200138 <build>
margaretha34954472018-10-24 20:05:17 +0200139 <!-- <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering>
140 <includes> <include>**/*.info</include> <include>**/*.xml</include> <include>**/*.conf</include>
141 <include>**/*.kustvakt</include> <include>**/*.properties</include> <include>**/*.sql</include>
142 <include>**/*.vm</include> </includes> </resource> </resources> -->
margarethaf68daa62017-09-21 02:11:24 +0200143 <testResources>
144 <testResource>
145 <directory>src/test/resources</directory>
margarethaf68daa62017-09-21 02:11:24 +0200146 </testResource>
147 <testResource>
148 <directory>src/main/resources</directory>
149 <filtering>true</filtering>
150 <includes>
151 <include>**/*.info</include>
Marc Kupietz392f4782022-05-02 13:23:18 +0200152 <include>**/*.conf</include>
margaretha3da7cd32018-10-22 17:42:52 +0200153 <include>**/*.json</include>
Marc Kupietz0a378672022-04-30 09:35:27 +0200154 <include>**/*.p12</include>
155 <include>**/*.jks</include>
156 <include>**/*.ldif</include>
margarethaf68daa62017-09-21 02:11:24 +0200157 </includes>
158 </testResource>
159 </testResources>
160 <plugins>
161 <!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html -->
162 <plugin>
163 <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
164 <artifactId>maven-java-formatter-plugin</artifactId>
165 <version>0.4</version>
166 <configuration>
167 <configFile>${project.basedir}/Format.xml</configFile>
168 <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion>
169 <compilerSource>${java.version}</compilerSource>
170 <compilerCompliance>${java.version}</compilerCompliance>
171 <compilerTargetPlatform>${java.version}</compilerTargetPlatform>
172 </configuration>
173 <!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution>
174 </executions> -->
175 </plugin>
176 <plugin>
177 <groupId>org.apache.maven.plugins</groupId>
178 <artifactId>maven-compiler-plugin</artifactId>
margaretha7e1fa0f2023-03-06 16:19:09 +0100179 <version>3.11.0</version>
margarethaf68daa62017-09-21 02:11:24 +0200180 <configuration>
181 <compilerVersion>${java.version}</compilerVersion>
182 <source>${java.version}</source>
183 <target>${java.version}</target>
margaretha58e18632018-02-15 13:04:42 +0100184 <!-- <compilerArguments> <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
185 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
186 </compilerArguments> -->
Marc Kupietz483db752020-03-25 08:25:35 +0100187 <annotationProcessors>
margarethafc7d7772018-01-16 17:48:17 +0100188 <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
189 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
Marc Kupietz483db752020-03-25 08:25:35 +0100190 </annotationProcessors>
margarethaf68daa62017-09-21 02:11:24 +0200191 </configuration>
192 </plugin>
margarethaf68daa62017-09-21 02:11:24 +0200193 <plugin>
194 <groupId>org.apache.maven.plugins</groupId>
margaretha6a925fe2023-05-15 16:50:32 +0200195 <artifactId>maven-source-plugin</artifactId>
196 <version>3.2.1</version>
197 <executions>
198 <execution>
199 <id>attach-sources</id>
200 <goals>
201 <goal>jar</goal>
202 </goals>
203 </execution>
204 </executions>
205 </plugin>
206 <plugin>
207 <groupId>org.apache.maven.plugins</groupId>
margarethaf68daa62017-09-21 02:11:24 +0200208 <artifactId>maven-surefire-plugin</artifactId>
dependabot[bot]2b051372023-06-07 17:56:39 +0000209 <version>3.1.2</version>
dependabot[bot]95465742023-02-17 17:56:32 +0000210 <dependencies>
211 <dependency>
212 <groupId>org.apache.maven.surefire</groupId>
213 <artifactId>surefire-junit47</artifactId>
dependabot[bot]2b051372023-06-07 17:56:39 +0000214 <version>3.1.2</version>
dependabot[bot]95465742023-02-17 17:56:32 +0000215 </dependency>
216 </dependencies>
margarethaf68daa62017-09-21 02:11:24 +0200217 <configuration>
margaretha0a45be12018-07-12 15:06:30 +0200218 <reuseForks>true</reuseForks>
219 <forkCount>1</forkCount>
220 <threadCount>10</threadCount>
Marc Kupietzddd9a8b2022-11-17 17:24:58 +0100221 <argLine>-Xmx512m
margaretha49cb6882018-07-04 04:19:54 +0200222 -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine>
margarethaf68daa62017-09-21 02:11:24 +0200223 <excludes>
Marc Kupietz0a378672022-04-30 09:35:27 +0200224 <exclude>de/ids_mannheim/korap/authentication/APIAuthenticationTest.java</exclude>
225 <exclude>de/ids_mannheim/korap/authentication/AuthenticationFilterTest.java</exclude>
226 <exclude>de/ids_mannheim/korap/authentication/Kustvakt*.java</exclude>
227 <exclude>de/ids_mannheim/korap/authentication/LdapTest.java</exclude>
228 <exclude>de/ids_mannheim/korap/authentication/Random*.java</exclude>
margaretha49cb6882018-07-04 04:19:54 +0200229 <exclude>de/ids_mannheim/korap/web/controller/TokenExpiryTest.java</exclude>
margaretha7cd52d12023-03-15 16:56:06 +0100230 <exclude>de/ids_mannheim/korap/web/controller/AdminLoadVCTest.java</exclude>
margarethaf68daa62017-09-21 02:11:24 +0200231 </excludes>
232 <includes>
233 <include>de/ids_mannheim/korap/**/*.java</include>
Marc Kupietz0a378672022-04-30 09:35:27 +0200234 <include>de/ids_mannheim/korap/authentication/LdapAuth3Test.java</include>
margarethaf68daa62017-09-21 02:11:24 +0200235 </includes>
236 </configuration>
237 </plugin>
margarethaf68daa62017-09-21 02:11:24 +0200238 </plugins>
239 </build>
240
241 <dependencies>
margaretha6a925fe2023-05-15 16:50:32 +0200242 <!-- backport -->
margarethaf68daa62017-09-21 02:11:24 +0200243 <dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200244 <groupId>backport-util-concurrent</groupId>
245 <artifactId>backport-util-concurrent</artifactId>
246 <version>3.1</version>
247 </dependency>
248
249 <!-- Jersey -->
250 <dependency>
251 <groupId>org.glassfish.jersey.core</groupId>
252 <artifactId>jersey-server</artifactId>
253 <version>${jersey.version}</version>
254 </dependency>
255
256 <dependency>
257 <groupId>org.glassfish.jersey.ext</groupId>
258 <artifactId>jersey-spring5</artifactId>
259 <version>${jersey.version}</version>
260 <exclusions>
261 <exclusion>
262 <groupId>org.springframework</groupId>
263 <artifactId>spring-core</artifactId>
264 </exclusion>
265 <exclusion>
266 <groupId>org.springframework</groupId>
267 <artifactId>spring-web</artifactId>
268 </exclusion>
269 <exclusion>
270 <groupId>org.springframework</groupId>
271 <artifactId>spring-beans</artifactId>
272 </exclusion>
273 <exclusion>
274 <groupId>org.springframework</groupId>
275 <artifactId>spring-context</artifactId>
276 </exclusion>
277 <exclusion>
278 <groupId>org.springframework</groupId>
279 <artifactId>spring-aop</artifactId>
280 </exclusion>
281 </exclusions>
282 </dependency>
283
284 <!-- JSON -->
285 <dependency>
286 <groupId>org.glassfish.jersey.media</groupId>
287 <artifactId>jersey-media-json-jackson</artifactId>
288 <version>${jersey.version}</version>
289 <exclusions>
290 <exclusion>
291 <groupId>com.fasterxml.jackson.core</groupId>
292 <artifactId>jackson-annotations</artifactId>
293 </exclusion>
294 <exclusion>
295 <groupId>com.fasterxml.jackson.core</groupId>
296 <artifactId>jackson-databind</artifactId>
297 </exclusion>
298 </exclusions>
299 </dependency>
300 <dependency>
301 <groupId>net.minidev</groupId>
302 <artifactId>json-smart</artifactId>
dependabot[bot]b962ef02023-05-18 17:57:10 +0000303 <version>2.4.11</version>
margaretha6a925fe2023-05-15 16:50:32 +0200304 </dependency>
305
306 <!-- Jersey 1x originally uses codehaus -->
307 <dependency>
308 <groupId>com.fasterxml.jackson.jaxrs</groupId>
309 <artifactId>jackson-jaxrs-json-provider</artifactId>
dependabot[bot]6e1188d2023-05-17 17:56:52 +0000310 <version>2.15.1</version>
margaretha6a925fe2023-05-15 16:50:32 +0200311 </dependency>
312
313 <!-- Flyway -->
314 <dependency>
315 <groupId>org.flywaydb</groupId>
316 <artifactId>flyway-core</artifactId>
317 <version>${flyway.version}</version>
318 </dependency>
319
320 <!-- Logging -->
321 <dependency>
322 <groupId>org.apache.logging.log4j</groupId>
323 <artifactId>log4j-api</artifactId>
324 <version>${log4j.version}</version>
325 </dependency>
326 <dependency>
327 <groupId>org.apache.logging.log4j</groupId>
328 <artifactId>log4j-core</artifactId>
329 <version>${log4j.version}</version>
330 <exclusions>
331 <exclusion>
332 <groupId>org.apache.logging.log4j</groupId>
333 <artifactId>log4j-api</artifactId>
334 </exclusion>
335 </exclusions>
336 </dependency>
337 <dependency>
338 <groupId>org.apache.logging.log4j</groupId>
339 <artifactId>log4j-slf4j2-impl</artifactId>
340 <version>${log4j.version}</version>
341 </dependency>
342 <dependency>
343 <groupId>org.apache.logging.log4j</groupId>
344 <artifactId>log4j-jul</artifactId>
345 <version>${log4j.version}</version>
346 <exclusions>
347 <exclusion>
348 <groupId>org.apache.logging.log4j</groupId>
349 <artifactId>log4j-api</artifactId>
350 </exclusion>
351 </exclusions>
352 </dependency>
353 <dependency>
354 <groupId>org.slf4j</groupId>
355 <artifactId>slf4j-api</artifactId>
356 <version>2.0.7</version>
357 </dependency>
358
359 <!-- Java Assist -->
360 <dependency>
361 <groupId>org.javassist</groupId>
362 <artifactId>javassist</artifactId>
363 <version>3.29.2-GA</version>
364 </dependency>
365
366 <!-- EM:done -->
367
368 <dependency>
369 <groupId>junit</groupId>
370 <artifactId>junit</artifactId>
371 <version>4.13.2</version>
372 </dependency>
373 <dependency>
374 <groupId>org.projectlombok</groupId>
375 <artifactId>lombok</artifactId>
dependabot[bot]949bef62023-05-25 17:56:39 +0000376 <version>1.18.28</version>
margaretha6a925fe2023-05-15 16:50:32 +0200377 </dependency>
378 <dependency>
379 <groupId>joda-time</groupId>
380 <artifactId>joda-time</artifactId>
381 <version>2.12.5</version>
382 </dependency>
383 <dependency>
384 <groupId>de.ids_mannheim.korap</groupId>
385 <artifactId>Koral</artifactId>
386 <version>${koral.version}</version>
387 <exclusions>
388 <exclusion>
389 <groupId>org.sonatype.sisu</groupId>
390 <artifactId>sisu-guava</artifactId>
391 </exclusion>
392 <exclusion>
393 <groupId>org.eclipse.jetty</groupId>
394 <artifactId>jetty-servlet</artifactId>
395 </exclusion>
396 <exclusion>
397 <groupId>org.apache.logging.log4j</groupId>
398 <artifactId>log4j-api</artifactId>
399 </exclusion>
400 <exclusion>
401 <groupId>org.apache.logging.log4j</groupId>
402 <artifactId>log4j-core</artifactId>
403 </exclusion>
404 <exclusion>
405 <groupId>org.apache.logging.log4j</groupId>
406 <artifactId>log4j-slf4j-impl</artifactId>
407 </exclusion>
408 <exclusion>
409 <groupId>org.apache.logging.log4j</groupId>
410 <artifactId>log4j-jul</artifactId>
411 </exclusion>
412 </exclusions>
413 </dependency>
414
415 <dependency>
416 <groupId>org.xerial</groupId>
417 <artifactId>sqlite-jdbc</artifactId>
418 <version>3.41.2.1</version>
419 </dependency>
420
421 <dependency>
422 <groupId>org.apache.commons</groupId>
423 <artifactId>commons-dbcp2</artifactId>
424 <version>2.9.0</version>
425 </dependency>
426
427 <dependency>
428 <groupId>commons-validator</groupId>
429 <artifactId>commons-validator</artifactId>
430 <version>1.7</version>
431 </dependency>
432
433 <dependency>
434 <groupId>org.mindrot</groupId>
435 <artifactId>jbcrypt</artifactId>
436 <version>0.4</version>
437 </dependency>
438
439 <dependency>
440 <groupId>javax.annotation</groupId>
441 <artifactId>javax.annotation-api</artifactId>
442 <version>1.3.2</version>
443 </dependency>
444
445 <dependency>
446 <groupId>de.ids_mannheim.korap</groupId>
447 <artifactId>Krill</artifactId>
448 <version>${krill.version}</version>
449 <exclusions>
450 <exclusion>
451 <groupId>org.glassfish.jersey.containers</groupId>
452 <artifactId>jersey-container-grizzly2-http</artifactId>
453 </exclusion>
454 <exclusion>
455 <groupId>org.xerial</groupId>
456 <artifactId>sqlite-jdbc</artifactId>
457 </exclusion>
458 <exclusion>
459 <groupId>org.apache.logging.log4j</groupId>
460 <artifactId>log4j-api</artifactId>
461 </exclusion>
462 <exclusion>
463 <groupId>org.apache.logging.log4j</groupId>
464 <artifactId>log4j-core</artifactId>
465 </exclusion>
466 <exclusion>
467 <groupId>org.apache.logging.log4j</groupId>
468 <artifactId>log4j-slf4j-impl</artifactId>
469 </exclusion>
470 <exclusion>
471 <groupId>org.slf4j</groupId>
472 <artifactId>jul-to-slf4j</artifactId>
473 </exclusion>
474 </exclusions>
475 </dependency>
476 <dependency>
477 <groupId>org.reflections</groupId>
478 <artifactId>reflections</artifactId>
479 <version>0.10.2</version>
480 </dependency>
481
482 <!-- Spring -->
483 <dependency>
484 <groupId>org.springframework</groupId>
485 <artifactId>spring-core</artifactId>
486 <version>${spring.version}</version>
487 </dependency>
488 <dependency>
489 <groupId>org.springframework</groupId>
490 <artifactId>spring-web</artifactId>
491 <version>${spring.version}</version>
492 </dependency>
493 <dependency>
494 <groupId>org.springframework</groupId>
495 <artifactId>spring-orm</artifactId>
496 <version>${spring.version}</version>
497 </dependency>
498
499 <dependency>
500 <groupId>org.springframework</groupId>
501 <artifactId>spring-jdbc</artifactId>
502 <version>${spring.version}</version>
503 </dependency>
504 <dependency>
505 <groupId>org.springframework</groupId>
506 <artifactId>spring-tx</artifactId>
507 <version>${spring.version}</version>
508 </dependency>
509 <!-- <dependency>
510 <groupId>org.springframework.security</groupId>
511 <artifactId>spring-security-core</artifactId>
512 <version>${spring.version}</version>
513 </dependency>
514 <dependency>
515 <groupId>org.springframework.security</groupId>
516 <artifactId>spring-security-web</artifactId>
517 <version>${spring.version}</version>
518 </dependency> -->
519 <!-- EM: done -->
520 <dependency>
521 <groupId>org.springframework</groupId>
522 <artifactId>spring-context</artifactId>
523 <version>${spring.version}</version>
524 </dependency>
525 <dependency>
526 <groupId>org.springframework</groupId>
527 <artifactId>spring-context-support</artifactId>
528 <version>${spring.version}</version>
529 </dependency>
530 <dependency>
531 <groupId>org.springframework</groupId>
532 <artifactId>spring-test</artifactId>
533 <version>${spring.version}</version>
534 <scope>compile</scope>
535 </dependency>
536
537 <!-- apparently this order prevents the spring schemas from being overriden
538 in META-INF/spring.schemas, thus must stay like this -->
539 <dependency>
540 <groupId>org.springframework</groupId>
541 <artifactId>spring-aop</artifactId>
542 <version>${spring.version}</version>
543 </dependency>
544 <dependency>
545 <groupId>org.springframework</groupId>
546 <artifactId>spring-aspects</artifactId>
547 <version>${spring.version}</version>
548 </dependency>
549
550 <!-- end copy -->
551
552 <dependency>
553 <groupId>commons-collections</groupId>
554 <artifactId>commons-collections</artifactId>
555 <version>3.2.2</version>
556 </dependency>
557
558 <!-- jetty -->
559 <dependency>
560 <groupId>org.eclipse.jetty</groupId>
561 <artifactId>jetty-server</artifactId>
562 <version>${jetty.version}</version>
563 </dependency>
564 <dependency>
565 <groupId>org.eclipse.jetty</groupId>
566 <artifactId>jetty-servlet</artifactId>
567 <version>${jetty.version}</version>
568 </dependency>
569 <dependency>
570 <groupId>org.eclipse.jetty</groupId>
571 <artifactId>jetty-webapp</artifactId>
572 <version>${jetty.version}</version>
573 </dependency>
574
575 <dependency>
576 <groupId>asm</groupId>
577 <artifactId>asm</artifactId>
578 <version>3.3.1</version>
579 </dependency>
580
581 <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId>
582 <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions>
583 <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId>
584 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId>
585 </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId>
586 <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion>
587 <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId>
588 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId>
589 </exclusion> </exclusions> </dependency> -->
590 <dependency>
591 <groupId>org.apache.httpcomponents</groupId>
592 <artifactId>httpclient</artifactId>
593 <version>4.5.14</version>
594 </dependency>
595 <dependency>
596 <groupId>commons-io</groupId>
597 <artifactId>commons-io</artifactId>
dependabot[bot]79c1e342023-06-08 17:56:39 +0000598 <version>2.13.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200599 </dependency>
600
601 <!-- Hibernate -->
602 <dependency>
603 <groupId>org.hibernate</groupId>
604 <artifactId>hibernate-ehcache</artifactId>
605 <version>${hibernate.version}</version>
606 </dependency>
607 <dependency>
608 <groupId>org.hibernate</groupId>
609 <artifactId>hibernate-jpamodelgen</artifactId>
610 <version>${hibernate.version}</version>
611 <scope>provided</scope>
612 </dependency>
613 <dependency>
614 <groupId>com.github.gwenn</groupId>
615 <artifactId>sqlite-dialect</artifactId>
616 <version>0.1.0</version>
617 </dependency>
618
619 <dependency>
620 <groupId>javax.servlet</groupId>
621 <artifactId>javax.servlet-api</artifactId>
622 <version>4.0.1</version>
623 </dependency>
624 <dependency>
625 <groupId>org.apache.commons</groupId>
626 <artifactId>commons-text</artifactId>
627 <version>1.10.0</version>
628 <scope>test</scope>
629 </dependency>
630 <!--<dependency>
margarethaf68daa62017-09-21 02:11:24 +0200631 <groupId>de.ids_mannheim.korap</groupId>
632 <artifactId>Kustvakt-core</artifactId>
margaretha4bae6a02023-03-13 09:50:33 +0100633 <version>${project.version}</version>
margaretha0ddaed62021-01-21 17:10:33 +0100634 </dependency>
635 <dependency>
636 <groupId>de.ids_mannheim.korap</groupId>
637 <artifactId>Kustvakt-core</artifactId>
margaretha4bae6a02023-03-13 09:50:33 +0100638 <version>${project.version}</version>
margaretha0ddaed62021-01-21 17:10:33 +0100639 <classifier>tests</classifier>
640 <type>test-jar</type>
641 <scope>test</scope>
margaretha6a925fe2023-05-15 16:50:32 +0200642 </dependency>-->
margaretha54134902017-09-27 18:43:11 +0200643 <!-- LDAP -->
644 <dependency>
645 <groupId>com.novell.ldap</groupId>
646 <artifactId>jldap</artifactId>
647 <version>4.3</version>
648 </dependency>
margaretha54134902017-09-27 18:43:11 +0200649 <dependency>
650 <groupId>com.unboundid</groupId>
651 <artifactId>unboundid-ldapsdk</artifactId>
dependabot[bot]771d8fa2023-06-08 17:56:48 +0000652 <version>6.0.9</version>
margaretha54134902017-09-27 18:43:11 +0200653 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200654
margarethaf68daa62017-09-21 02:11:24 +0200655 <!-- Hibernate -->
656 <dependency>
657 <groupId>org.hibernate</groupId>
658 <artifactId>hibernate-entitymanager</artifactId>
margaretha9025d642018-01-19 17:35:22 +0100659 <version>${hibernate.version}</version>
660 <exclusions>
661 <exclusion>
662 <groupId>org.javassist</groupId>
margaretha58e18632018-02-15 13:04:42 +0100663 <artifactId>javassist</artifactId>
margaretha9025d642018-01-19 17:35:22 +0100664 </exclusion>
665 </exclusions>
margarethaf68daa62017-09-21 02:11:24 +0200666 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200667 <dependency>
668 <groupId>org.hibernate</groupId>
669 <artifactId>hibernate-jpamodelgen</artifactId>
margaretha9025d642018-01-19 17:35:22 +0100670 <version>${hibernate.version}</version>
margarethad3c0fc92017-10-25 15:03:32 +0200671 <scope>provided</scope>
672 </dependency>
margaretha9025d642018-01-19 17:35:22 +0100673 <dependency>
margaretha58e18632018-02-15 13:04:42 +0100674 <groupId>org.hibernate</groupId>
675 <artifactId>hibernate-java8</artifactId>
676 <version>${hibernate.version}</version>
margarethae6c711b2018-02-06 21:55:04 +0100677 </dependency>
678 <dependency>
margaretha34954472018-10-24 20:05:17 +0200679 <groupId>org.hibernate</groupId>
680 <artifactId>hibernate-c3p0</artifactId>
681 <version>${hibernate.version}</version>
margarethac7196d22018-08-27 14:20:03 +0200682 </dependency>
margaretha34954472018-10-24 20:05:17 +0200683
margaretha318fec32017-10-24 12:11:58 +0200684 <!-- MySql -->
685 <dependency>
686 <groupId>mysql</groupId>
687 <artifactId>mysql-connector-java</artifactId>
dependabot[bot]c60ca472022-07-25 17:02:41 +0000688 <version>8.0.30</version>
margaretha318fec32017-10-24 12:11:58 +0200689 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200690
691 <!-- Jersey -->
692 <dependency>
abcpro10c746892022-11-03 22:47:04 +0000693 <groupId>org.glassfish.jersey.test-framework</groupId>
margarethaf68daa62017-09-21 02:11:24 +0200694 <artifactId>jersey-test-framework-core</artifactId>
695 <version>${jersey.version}</version>
696 <scope>test</scope>
margaretha368d2d32023-02-28 11:23:22 +0100697 <exclusions>
698 <exclusion>
699 <groupId>org.junit.jupiter</groupId>
700 <artifactId>junit-jupiter</artifactId>
701 </exclusion>
702 </exclusions>
margarethaf68daa62017-09-21 02:11:24 +0200703 </dependency>
704 <dependency>
abcpro10c746892022-11-03 22:47:04 +0000705 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
706 <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
margarethaf68daa62017-09-21 02:11:24 +0200707 <version>${jersey.version}</version>
708 <scope>test</scope>
margaretha368d2d32023-02-28 11:23:22 +0100709 <exclusions>
710 <exclusion>
711 <groupId>org.junit.jupiter</groupId>
712 <artifactId>junit-jupiter</artifactId>
713 </exclusion>
714 </exclusions>
margarethaf68daa62017-09-21 02:11:24 +0200715 </dependency>
margaretha34954472018-10-24 20:05:17 +0200716
margaretha58e18632018-02-15 13:04:42 +0100717 <!-- velocity -->
718 <dependency>
719 <groupId>org.apache.velocity</groupId>
720 <artifactId>velocity-engine-core</artifactId>
dependabot[bot]2d36f792021-03-08 05:46:34 +0000721 <version>2.3</version>
margaretha58e18632018-02-15 13:04:42 +0100722 </dependency>
723 <dependency>
margaretha327d3ad2021-03-15 16:19:35 +0100724 <groupId>org.apache.velocity.tools</groupId>
725 <artifactId>velocity-tools-generic</artifactId>
726 <version>3.1</version>
margaretha58e18632018-02-15 13:04:42 +0100727 </dependency>
728 <!-- mail -->
729 <dependency>
730 <groupId>com.sun.mail</groupId>
731 <artifactId>javax.mail</artifactId>
dependabot[bot]7baae302020-07-06 05:43:30 +0000732 <version>1.6.2</version>
margaretha58e18632018-02-15 13:04:42 +0100733 </dependency>
734 <dependency>
735 <groupId>javax.activation</groupId>
736 <artifactId>activation</artifactId>
737 <version>1.1.1</version>
738 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200739
margarethafb027f92018-04-23 20:00:13 +0200740 <!-- OAuth -->
741 <dependency>
742 <groupId>org.apache.oltu.oauth2</groupId>
743 <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
margarethae4034a82018-07-02 14:46:59 +0200744 <version>1.0.2</version>
margarethafb027f92018-04-23 20:00:13 +0200745 </dependency>
margarethae4034a82018-07-02 14:46:59 +0200746 <dependency>
747 <groupId>org.apache.oltu.oauth2</groupId>
748 <artifactId>org.apache.oltu.oauth2.client</artifactId>
749 <version>1.0.2</version>
750 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200751 <!-- JWT -->
752 <dependency>
753 <groupId>com.nimbusds</groupId>
754 <artifactId>nimbus-jose-jwt</artifactId>
dependabot[bot]92ad6942023-02-22 17:12:19 +0000755 <version>9.31</version>
margaretha235a6802018-06-06 19:21:53 +0200756 </dependency>
margaretha9c78e1a2018-06-27 14:12:35 +0200757
margarethaec247dd2018-06-12 21:55:46 +0200758 <!-- OpenId -->
759 <dependency>
margaretha9c78e1a2018-06-27 14:12:35 +0200760 <groupId>com.nimbusds</groupId>
761 <artifactId>oauth2-oidc-sdk</artifactId>
dependabot[bot]b1ba4ec2023-05-11 17:56:30 +0000762 <version>10.9.1</version>
margarethaec247dd2018-06-12 21:55:46 +0200763 </dependency>
Marc Kupietzceea30c2020-05-15 16:00:03 +0200764
765 <!-- Project Lombok -->
766 <dependency>
767 <groupId>org.projectlombok</groupId>
768 <artifactId>lombok</artifactId>
dependabot[bot]949bef62023-05-25 17:56:39 +0000769 <version>1.18.28</version>
Marc Kupietzceea30c2020-05-15 16:00:03 +0200770 <scope>provided</scope>
771 </dependency>
margaretha0ddaed62021-01-21 17:10:33 +0100772
773 <!-- Mockserver -->
774 <dependency>
775 <groupId>org.mock-server</groupId>
776 <artifactId>mockserver-netty</artifactId>
dependabot[bot]19fcf082023-01-12 17:01:24 +0000777 <version>5.15.0</version>
margaretha0ddaed62021-01-21 17:10:33 +0100778 <scope>test</scope>
779 </dependency>
Marc Kupietz0a378672022-04-30 09:35:27 +0200780
781 <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-text -->
782 <dependency>
783 <groupId>org.apache.commons</groupId>
784 <artifactId>commons-text</artifactId>
dependabot[bot]5e19a782022-09-29 17:04:17 +0000785 <version>1.10.0</version>
Marc Kupietz0a378672022-04-30 09:35:27 +0200786 </dependency>
787
margaretha235a6802018-06-06 19:21:53 +0200788 </dependencies>
Akron63656052018-11-07 12:20:13 +0100789</project>