blob: 4629f9774b566851621f3a1bf7feecaee9676b1f [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]fc0aa552023-06-23 17:56:33 +000010 <jersey.version>2.40</jersey.version>
dependabot[bot]38cd4872023-02-06 17:00:54 +000011 <hibernate.version>5.6.15.Final</hibernate.version>
dependabot[bot]57740752023-07-13 17:58:15 +000012 <spring.version>5.3.29</spring.version>
margaretha6a925fe2023-05-15 16:50:32 +020013 <jetty.version>9.4.51.v20230217</jetty.version>
dependabot[bot]019ec6f2023-07-27 17:49:15 +000014 <flyway.version>9.21.1</flyway.version>
dependabot[bot]77606532023-05-16 17:57:39 +000015 <log4j.version>2.20.0</log4j.version>
margarethacaf49d22023-09-29 08:30:37 +020016 <krill.version>0.61.3</krill.version>
17 <koral.version>0.41.0</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]3dea5c72023-06-16 17:56:55 +000029 <version>3.5.0</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>
dependabot[bot]3dea5c72023-06-16 17:56:55 +000081 <version>3.5.0</version>
margaretha92ad2ec2023-05-15 14:10:00 +020082 <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>
margaretha7e1b7752023-07-17 13:56:42 +0200139 <resources>
140 <resource>
141 <directory>src/main/resources</directory>
142 <filtering>true</filtering>
143 <!--
margaretha34954472018-10-24 20:05:17 +0200144 <includes> <include>**/*.info</include> <include>**/*.xml</include> <include>**/*.conf</include>
145 <include>**/*.kustvakt</include> <include>**/*.properties</include> <include>**/*.sql</include>
margaretha7e1b7752023-07-17 13:56:42 +0200146 <include>**/*.vm</include> </includes>
147 -->
148 </resource>
149 </resources>
margarethaf68daa62017-09-21 02:11:24 +0200150 <testResources>
151 <testResource>
152 <directory>src/test/resources</directory>
margarethaf68daa62017-09-21 02:11:24 +0200153 </testResource>
154 <testResource>
155 <directory>src/main/resources</directory>
156 <filtering>true</filtering>
157 <includes>
158 <include>**/*.info</include>
margaretha3da7cd32018-10-22 17:42:52 +0200159 <include>**/*.json</include>
Marc Kupietz0a378672022-04-30 09:35:27 +0200160 <include>**/*.ldif</include>
margarethaf68daa62017-09-21 02:11:24 +0200161 </includes>
162 </testResource>
163 </testResources>
164 <plugins>
165 <!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html -->
166 <plugin>
167 <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
168 <artifactId>maven-java-formatter-plugin</artifactId>
169 <version>0.4</version>
170 <configuration>
171 <configFile>${project.basedir}/Format.xml</configFile>
172 <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion>
173 <compilerSource>${java.version}</compilerSource>
174 <compilerCompliance>${java.version}</compilerCompliance>
175 <compilerTargetPlatform>${java.version}</compilerTargetPlatform>
176 </configuration>
177 <!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution>
178 </executions> -->
179 </plugin>
180 <plugin>
181 <groupId>org.apache.maven.plugins</groupId>
182 <artifactId>maven-compiler-plugin</artifactId>
margaretha7e1fa0f2023-03-06 16:19:09 +0100183 <version>3.11.0</version>
margarethaf68daa62017-09-21 02:11:24 +0200184 <configuration>
185 <compilerVersion>${java.version}</compilerVersion>
186 <source>${java.version}</source>
187 <target>${java.version}</target>
margaretha58e18632018-02-15 13:04:42 +0100188 <!-- <compilerArguments> <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
189 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
190 </compilerArguments> -->
Marc Kupietz483db752020-03-25 08:25:35 +0100191 <annotationProcessors>
margarethafc7d7772018-01-16 17:48:17 +0100192 <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
193 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
Marc Kupietz483db752020-03-25 08:25:35 +0100194 </annotationProcessors>
margarethaf68daa62017-09-21 02:11:24 +0200195 </configuration>
196 </plugin>
margarethaf68daa62017-09-21 02:11:24 +0200197 <plugin>
198 <groupId>org.apache.maven.plugins</groupId>
margaretha6a925fe2023-05-15 16:50:32 +0200199 <artifactId>maven-source-plugin</artifactId>
dependabot[bot]1632cdb2023-05-22 17:56:43 +0000200 <version>3.3.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200201 <executions>
202 <execution>
203 <id>attach-sources</id>
204 <goals>
205 <goal>jar</goal>
206 </goals>
207 </execution>
208 </executions>
209 </plugin>
210 <plugin>
211 <groupId>org.apache.maven.plugins</groupId>
margarethaf68daa62017-09-21 02:11:24 +0200212 <artifactId>maven-surefire-plugin</artifactId>
dependabot[bot]2b051372023-06-07 17:56:39 +0000213 <version>3.1.2</version>
margarethaf68daa62017-09-21 02:11:24 +0200214 <configuration>
margaretha0a45be12018-07-12 15:06:30 +0200215 <reuseForks>true</reuseForks>
216 <forkCount>1</forkCount>
217 <threadCount>10</threadCount>
Marc Kupietzddd9a8b2022-11-17 17:24:58 +0100218 <argLine>-Xmx512m
margaretha49cb6882018-07-04 04:19:54 +0200219 -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine>
margarethaf68daa62017-09-21 02:11:24 +0200220 <excludes>
Marc Kupietz0a378672022-04-30 09:35:27 +0200221 <exclude>de/ids_mannheim/korap/authentication/APIAuthenticationTest.java</exclude>
222 <exclude>de/ids_mannheim/korap/authentication/AuthenticationFilterTest.java</exclude>
223 <exclude>de/ids_mannheim/korap/authentication/Kustvakt*.java</exclude>
224 <exclude>de/ids_mannheim/korap/authentication/LdapTest.java</exclude>
225 <exclude>de/ids_mannheim/korap/authentication/Random*.java</exclude>
margaretha49cb6882018-07-04 04:19:54 +0200226 <exclude>de/ids_mannheim/korap/web/controller/TokenExpiryTest.java</exclude>
margaretha7cd52d12023-03-15 16:56:06 +0100227 <exclude>de/ids_mannheim/korap/web/controller/AdminLoadVCTest.java</exclude>
margarethaf68daa62017-09-21 02:11:24 +0200228 </excludes>
229 <includes>
230 <include>de/ids_mannheim/korap/**/*.java</include>
Marc Kupietz0a378672022-04-30 09:35:27 +0200231 <include>de/ids_mannheim/korap/authentication/LdapAuth3Test.java</include>
margarethaf68daa62017-09-21 02:11:24 +0200232 </includes>
233 </configuration>
234 </plugin>
margarethaf68daa62017-09-21 02:11:24 +0200235 </plugins>
236 </build>
237
238 <dependencies>
margaretha6a925fe2023-05-15 16:50:32 +0200239 <!-- backport -->
margarethaf68daa62017-09-21 02:11:24 +0200240 <dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200241 <groupId>backport-util-concurrent</groupId>
242 <artifactId>backport-util-concurrent</artifactId>
243 <version>3.1</version>
244 </dependency>
245
246 <!-- Jersey -->
247 <dependency>
248 <groupId>org.glassfish.jersey.core</groupId>
249 <artifactId>jersey-server</artifactId>
250 <version>${jersey.version}</version>
251 </dependency>
252
253 <dependency>
254 <groupId>org.glassfish.jersey.ext</groupId>
255 <artifactId>jersey-spring5</artifactId>
256 <version>${jersey.version}</version>
257 <exclusions>
258 <exclusion>
259 <groupId>org.springframework</groupId>
260 <artifactId>spring-core</artifactId>
261 </exclusion>
262 <exclusion>
263 <groupId>org.springframework</groupId>
264 <artifactId>spring-web</artifactId>
265 </exclusion>
266 <exclusion>
267 <groupId>org.springframework</groupId>
268 <artifactId>spring-beans</artifactId>
269 </exclusion>
270 <exclusion>
271 <groupId>org.springframework</groupId>
272 <artifactId>spring-context</artifactId>
273 </exclusion>
274 <exclusion>
275 <groupId>org.springframework</groupId>
276 <artifactId>spring-aop</artifactId>
277 </exclusion>
278 </exclusions>
279 </dependency>
280
281 <!-- JSON -->
282 <dependency>
283 <groupId>org.glassfish.jersey.media</groupId>
284 <artifactId>jersey-media-json-jackson</artifactId>
285 <version>${jersey.version}</version>
286 <exclusions>
287 <exclusion>
288 <groupId>com.fasterxml.jackson.core</groupId>
289 <artifactId>jackson-annotations</artifactId>
290 </exclusion>
291 <exclusion>
292 <groupId>com.fasterxml.jackson.core</groupId>
293 <artifactId>jackson-databind</artifactId>
294 </exclusion>
295 </exclusions>
296 </dependency>
297 <dependency>
298 <groupId>net.minidev</groupId>
299 <artifactId>json-smart</artifactId>
dependabot[bot]60d16bc2023-07-10 17:39:03 +0000300 <version>2.5.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200301 </dependency>
302
303 <!-- Jersey 1x originally uses codehaus -->
304 <dependency>
305 <groupId>com.fasterxml.jackson.jaxrs</groupId>
306 <artifactId>jackson-jaxrs-json-provider</artifactId>
dependabot[bot]6e1188d2023-05-17 17:56:52 +0000307 <version>2.15.1</version>
margaretha6a925fe2023-05-15 16:50:32 +0200308 </dependency>
309
310 <!-- Flyway -->
311 <dependency>
312 <groupId>org.flywaydb</groupId>
313 <artifactId>flyway-core</artifactId>
314 <version>${flyway.version}</version>
315 </dependency>
316
317 <!-- Logging -->
318 <dependency>
319 <groupId>org.apache.logging.log4j</groupId>
320 <artifactId>log4j-api</artifactId>
321 <version>${log4j.version}</version>
322 </dependency>
323 <dependency>
324 <groupId>org.apache.logging.log4j</groupId>
325 <artifactId>log4j-core</artifactId>
326 <version>${log4j.version}</version>
327 <exclusions>
328 <exclusion>
329 <groupId>org.apache.logging.log4j</groupId>
330 <artifactId>log4j-api</artifactId>
331 </exclusion>
332 </exclusions>
333 </dependency>
334 <dependency>
335 <groupId>org.apache.logging.log4j</groupId>
336 <artifactId>log4j-slf4j2-impl</artifactId>
337 <version>${log4j.version}</version>
338 </dependency>
339 <dependency>
340 <groupId>org.apache.logging.log4j</groupId>
341 <artifactId>log4j-jul</artifactId>
342 <version>${log4j.version}</version>
343 <exclusions>
344 <exclusion>
345 <groupId>org.apache.logging.log4j</groupId>
346 <artifactId>log4j-api</artifactId>
347 </exclusion>
348 </exclusions>
349 </dependency>
350 <dependency>
351 <groupId>org.slf4j</groupId>
352 <artifactId>slf4j-api</artifactId>
353 <version>2.0.7</version>
354 </dependency>
355
356 <!-- Java Assist -->
357 <dependency>
358 <groupId>org.javassist</groupId>
359 <artifactId>javassist</artifactId>
360 <version>3.29.2-GA</version>
361 </dependency>
362
363 <!-- EM:done -->
364
365 <dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200366 <groupId>joda-time</groupId>
367 <artifactId>joda-time</artifactId>
368 <version>2.12.5</version>
369 </dependency>
370 <dependency>
371 <groupId>de.ids_mannheim.korap</groupId>
372 <artifactId>Koral</artifactId>
373 <version>${koral.version}</version>
374 <exclusions>
375 <exclusion>
376 <groupId>org.sonatype.sisu</groupId>
377 <artifactId>sisu-guava</artifactId>
378 </exclusion>
379 <exclusion>
380 <groupId>org.eclipse.jetty</groupId>
381 <artifactId>jetty-servlet</artifactId>
382 </exclusion>
383 <exclusion>
384 <groupId>org.apache.logging.log4j</groupId>
385 <artifactId>log4j-api</artifactId>
386 </exclusion>
387 <exclusion>
388 <groupId>org.apache.logging.log4j</groupId>
389 <artifactId>log4j-core</artifactId>
390 </exclusion>
391 <exclusion>
392 <groupId>org.apache.logging.log4j</groupId>
393 <artifactId>log4j-slf4j-impl</artifactId>
394 </exclusion>
395 <exclusion>
396 <groupId>org.apache.logging.log4j</groupId>
397 <artifactId>log4j-jul</artifactId>
398 </exclusion>
399 </exclusions>
400 </dependency>
401
402 <dependency>
403 <groupId>org.xerial</groupId>
404 <artifactId>sqlite-jdbc</artifactId>
dependabot[bot]482f2502023-05-22 17:56:53 +0000405 <version>3.42.0.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200406 </dependency>
407
408 <dependency>
409 <groupId>org.apache.commons</groupId>
410 <artifactId>commons-dbcp2</artifactId>
411 <version>2.9.0</version>
412 </dependency>
413
414 <dependency>
415 <groupId>commons-validator</groupId>
416 <artifactId>commons-validator</artifactId>
417 <version>1.7</version>
418 </dependency>
419
420 <dependency>
421 <groupId>org.mindrot</groupId>
422 <artifactId>jbcrypt</artifactId>
423 <version>0.4</version>
424 </dependency>
425
426 <dependency>
427 <groupId>javax.annotation</groupId>
428 <artifactId>javax.annotation-api</artifactId>
429 <version>1.3.2</version>
430 </dependency>
431
432 <dependency>
433 <groupId>de.ids_mannheim.korap</groupId>
434 <artifactId>Krill</artifactId>
435 <version>${krill.version}</version>
436 <exclusions>
437 <exclusion>
438 <groupId>org.glassfish.jersey.containers</groupId>
439 <artifactId>jersey-container-grizzly2-http</artifactId>
440 </exclusion>
441 <exclusion>
442 <groupId>org.xerial</groupId>
443 <artifactId>sqlite-jdbc</artifactId>
444 </exclusion>
445 <exclusion>
446 <groupId>org.apache.logging.log4j</groupId>
447 <artifactId>log4j-api</artifactId>
448 </exclusion>
449 <exclusion>
450 <groupId>org.apache.logging.log4j</groupId>
451 <artifactId>log4j-core</artifactId>
452 </exclusion>
453 <exclusion>
454 <groupId>org.apache.logging.log4j</groupId>
455 <artifactId>log4j-slf4j-impl</artifactId>
456 </exclusion>
457 <exclusion>
458 <groupId>org.slf4j</groupId>
459 <artifactId>jul-to-slf4j</artifactId>
460 </exclusion>
461 </exclusions>
462 </dependency>
463 <dependency>
464 <groupId>org.reflections</groupId>
465 <artifactId>reflections</artifactId>
466 <version>0.10.2</version>
467 </dependency>
468
469 <!-- Spring -->
470 <dependency>
471 <groupId>org.springframework</groupId>
472 <artifactId>spring-core</artifactId>
473 <version>${spring.version}</version>
474 </dependency>
475 <dependency>
476 <groupId>org.springframework</groupId>
477 <artifactId>spring-web</artifactId>
478 <version>${spring.version}</version>
479 </dependency>
480 <dependency>
481 <groupId>org.springframework</groupId>
482 <artifactId>spring-orm</artifactId>
483 <version>${spring.version}</version>
484 </dependency>
485
486 <dependency>
487 <groupId>org.springframework</groupId>
488 <artifactId>spring-jdbc</artifactId>
489 <version>${spring.version}</version>
490 </dependency>
491 <dependency>
492 <groupId>org.springframework</groupId>
493 <artifactId>spring-tx</artifactId>
494 <version>${spring.version}</version>
495 </dependency>
496 <!-- <dependency>
497 <groupId>org.springframework.security</groupId>
498 <artifactId>spring-security-core</artifactId>
499 <version>${spring.version}</version>
500 </dependency>
501 <dependency>
502 <groupId>org.springframework.security</groupId>
503 <artifactId>spring-security-web</artifactId>
504 <version>${spring.version}</version>
505 </dependency> -->
506 <!-- EM: done -->
507 <dependency>
508 <groupId>org.springframework</groupId>
509 <artifactId>spring-context</artifactId>
510 <version>${spring.version}</version>
511 </dependency>
512 <dependency>
513 <groupId>org.springframework</groupId>
514 <artifactId>spring-context-support</artifactId>
515 <version>${spring.version}</version>
516 </dependency>
517 <dependency>
518 <groupId>org.springframework</groupId>
519 <artifactId>spring-test</artifactId>
520 <version>${spring.version}</version>
521 <scope>compile</scope>
522 </dependency>
523
524 <!-- apparently this order prevents the spring schemas from being overriden
525 in META-INF/spring.schemas, thus must stay like this -->
526 <dependency>
527 <groupId>org.springframework</groupId>
528 <artifactId>spring-aop</artifactId>
529 <version>${spring.version}</version>
530 </dependency>
531 <dependency>
532 <groupId>org.springframework</groupId>
533 <artifactId>spring-aspects</artifactId>
534 <version>${spring.version}</version>
535 </dependency>
536
537 <!-- end copy -->
538
539 <dependency>
540 <groupId>commons-collections</groupId>
541 <artifactId>commons-collections</artifactId>
542 <version>3.2.2</version>
543 </dependency>
544
545 <!-- jetty -->
546 <dependency>
547 <groupId>org.eclipse.jetty</groupId>
548 <artifactId>jetty-server</artifactId>
549 <version>${jetty.version}</version>
550 </dependency>
551 <dependency>
552 <groupId>org.eclipse.jetty</groupId>
553 <artifactId>jetty-servlet</artifactId>
554 <version>${jetty.version}</version>
555 </dependency>
556 <dependency>
557 <groupId>org.eclipse.jetty</groupId>
558 <artifactId>jetty-webapp</artifactId>
559 <version>${jetty.version}</version>
560 </dependency>
561
562 <dependency>
563 <groupId>asm</groupId>
564 <artifactId>asm</artifactId>
565 <version>3.3.1</version>
566 </dependency>
567
568 <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId>
569 <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions>
570 <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId>
571 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId>
572 </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId>
573 <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion>
574 <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId>
575 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId>
576 </exclusion> </exclusions> </dependency> -->
577 <dependency>
578 <groupId>org.apache.httpcomponents</groupId>
579 <artifactId>httpclient</artifactId>
580 <version>4.5.14</version>
581 </dependency>
582 <dependency>
583 <groupId>commons-io</groupId>
584 <artifactId>commons-io</artifactId>
dependabot[bot]79c1e342023-06-08 17:56:39 +0000585 <version>2.13.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200586 </dependency>
587
588 <!-- Hibernate -->
589 <dependency>
590 <groupId>org.hibernate</groupId>
591 <artifactId>hibernate-ehcache</artifactId>
592 <version>${hibernate.version}</version>
593 </dependency>
594 <dependency>
595 <groupId>org.hibernate</groupId>
596 <artifactId>hibernate-jpamodelgen</artifactId>
597 <version>${hibernate.version}</version>
598 <scope>provided</scope>
599 </dependency>
600 <dependency>
margarethaaba5e502023-09-21 11:47:27 +0200601 <groupId>org.hibernate</groupId>
602 <artifactId>hibernate-entitymanager</artifactId>
603 <version>${hibernate.version}</version>
604 <exclusions>
605 <exclusion>
606 <groupId>org.javassist</groupId>
607 <artifactId>javassist</artifactId>
608 </exclusion>
609 </exclusions>
610 </dependency>
611 <dependency>
612 <groupId>org.hibernate</groupId>
613 <artifactId>hibernate-java8</artifactId>
614 <version>${hibernate.version}</version>
615 </dependency>
616 <dependency>
617 <groupId>org.hibernate</groupId>
618 <artifactId>hibernate-c3p0</artifactId>
619 <version>${hibernate.version}</version>
620 </dependency>
621
622 <!-- Sqlite -->
623 <dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200624 <groupId>com.github.gwenn</groupId>
625 <artifactId>sqlite-dialect</artifactId>
626 <version>0.1.0</version>
627 </dependency>
628
margarethaaba5e502023-09-21 11:47:27 +0200629 <!-- servlet -->
margaretha6a925fe2023-05-15 16:50:32 +0200630 <dependency>
631 <groupId>javax.servlet</groupId>
632 <artifactId>javax.servlet-api</artifactId>
633 <version>4.0.1</version>
634 </dependency>
margarethaaba5e502023-09-21 11:47:27 +0200635
margaretha6a925fe2023-05-15 16:50:32 +0200636 <dependency>
637 <groupId>org.apache.commons</groupId>
638 <artifactId>commons-text</artifactId>
639 <version>1.10.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200640 </dependency>
641 <!--<dependency>
margarethaf68daa62017-09-21 02:11:24 +0200642 <groupId>de.ids_mannheim.korap</groupId>
643 <artifactId>Kustvakt-core</artifactId>
margaretha4bae6a02023-03-13 09:50:33 +0100644 <version>${project.version}</version>
margaretha0ddaed62021-01-21 17:10:33 +0100645 </dependency>
646 <dependency>
647 <groupId>de.ids_mannheim.korap</groupId>
648 <artifactId>Kustvakt-core</artifactId>
margaretha4bae6a02023-03-13 09:50:33 +0100649 <version>${project.version}</version>
margaretha0ddaed62021-01-21 17:10:33 +0100650 <classifier>tests</classifier>
651 <type>test-jar</type>
652 <scope>test</scope>
margaretha6a925fe2023-05-15 16:50:32 +0200653 </dependency>-->
margarethaaba5e502023-09-21 11:47:27 +0200654
margaretha54134902017-09-27 18:43:11 +0200655 <!-- LDAP -->
656 <dependency>
657 <groupId>com.novell.ldap</groupId>
658 <artifactId>jldap</artifactId>
659 <version>4.3</version>
660 </dependency>
margaretha54134902017-09-27 18:43:11 +0200661 <dependency>
662 <groupId>com.unboundid</groupId>
663 <artifactId>unboundid-ldapsdk</artifactId>
dependabot[bot]771d8fa2023-06-08 17:56:48 +0000664 <version>6.0.9</version>
margaretha54134902017-09-27 18:43:11 +0200665 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200666
margaretha34954472018-10-24 20:05:17 +0200667
margaretha318fec32017-10-24 12:11:58 +0200668 <!-- MySql -->
669 <dependency>
670 <groupId>mysql</groupId>
671 <artifactId>mysql-connector-java</artifactId>
dependabot[bot]c60ca472022-07-25 17:02:41 +0000672 <version>8.0.30</version>
margaretha318fec32017-10-24 12:11:58 +0200673 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200674
675 <!-- Jersey -->
676 <dependency>
abcpro10c746892022-11-03 22:47:04 +0000677 <groupId>org.glassfish.jersey.test-framework</groupId>
margarethaf68daa62017-09-21 02:11:24 +0200678 <artifactId>jersey-test-framework-core</artifactId>
679 <version>${jersey.version}</version>
680 <scope>test</scope>
681 </dependency>
682 <dependency>
abcpro10c746892022-11-03 22:47:04 +0000683 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
684 <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
margarethaf68daa62017-09-21 02:11:24 +0200685 <version>${jersey.version}</version>
686 <scope>test</scope>
687 </dependency>
margaretha34954472018-10-24 20:05:17 +0200688
margaretha58e18632018-02-15 13:04:42 +0100689 <!-- velocity -->
690 <dependency>
691 <groupId>org.apache.velocity</groupId>
692 <artifactId>velocity-engine-core</artifactId>
dependabot[bot]2d36f792021-03-08 05:46:34 +0000693 <version>2.3</version>
margaretha58e18632018-02-15 13:04:42 +0100694 </dependency>
695 <dependency>
margaretha327d3ad2021-03-15 16:19:35 +0100696 <groupId>org.apache.velocity.tools</groupId>
697 <artifactId>velocity-tools-generic</artifactId>
698 <version>3.1</version>
margaretha58e18632018-02-15 13:04:42 +0100699 </dependency>
700 <!-- mail -->
701 <dependency>
702 <groupId>com.sun.mail</groupId>
703 <artifactId>javax.mail</artifactId>
dependabot[bot]7baae302020-07-06 05:43:30 +0000704 <version>1.6.2</version>
margaretha58e18632018-02-15 13:04:42 +0100705 </dependency>
706 <dependency>
707 <groupId>javax.activation</groupId>
708 <artifactId>activation</artifactId>
709 <version>1.1.1</version>
710 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200711
margarethafb027f92018-04-23 20:00:13 +0200712 <!-- OAuth -->
713 <dependency>
714 <groupId>org.apache.oltu.oauth2</groupId>
715 <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
margarethae4034a82018-07-02 14:46:59 +0200716 <version>1.0.2</version>
margarethafb027f92018-04-23 20:00:13 +0200717 </dependency>
margarethae4034a82018-07-02 14:46:59 +0200718 <dependency>
719 <groupId>org.apache.oltu.oauth2</groupId>
720 <artifactId>org.apache.oltu.oauth2.client</artifactId>
721 <version>1.0.2</version>
722 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200723 <!-- JWT -->
724 <dependency>
725 <groupId>com.nimbusds</groupId>
726 <artifactId>nimbus-jose-jwt</artifactId>
dependabot[bot]92ad6942023-02-22 17:12:19 +0000727 <version>9.31</version>
margaretha235a6802018-06-06 19:21:53 +0200728 </dependency>
margaretha9c78e1a2018-06-27 14:12:35 +0200729
margarethaec247dd2018-06-12 21:55:46 +0200730 <!-- OpenId -->
731 <dependency>
margaretha9c78e1a2018-06-27 14:12:35 +0200732 <groupId>com.nimbusds</groupId>
733 <artifactId>oauth2-oidc-sdk</artifactId>
dependabot[bot]5a172a92023-08-04 17:04:35 +0000734 <version>10.13.2</version>
margarethaec247dd2018-06-12 21:55:46 +0200735 </dependency>
Marc Kupietzceea30c2020-05-15 16:00:03 +0200736
737 <!-- Project Lombok -->
738 <dependency>
739 <groupId>org.projectlombok</groupId>
740 <artifactId>lombok</artifactId>
dependabot[bot]949bef62023-05-25 17:56:39 +0000741 <version>1.18.28</version>
Marc Kupietzceea30c2020-05-15 16:00:03 +0200742 </dependency>
margaretha0ddaed62021-01-21 17:10:33 +0100743
744 <!-- Mockserver -->
745 <dependency>
746 <groupId>org.mock-server</groupId>
747 <artifactId>mockserver-netty</artifactId>
dependabot[bot]19fcf082023-01-12 17:01:24 +0000748 <version>5.15.0</version>
margaretha0ddaed62021-01-21 17:10:33 +0100749 <scope>test</scope>
750 </dependency>
Marc Kupietzd43a98d2023-09-22 17:11:46 +0200751 <dependency>
752 <groupId>org.junit.jupiter</groupId>
753 <artifactId>junit-jupiter</artifactId>
754 <version>5.10.0</version>
755 <scope>test</scope>
756 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200757 </dependencies>
Akron63656052018-11-07 12:20:13 +0100758</project>