blob: e782d93242af0f3264bce74eb9d83d93478c2e58 [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>
margaretha394efe82023-08-16 11:29:51 +02006 <version>0.71.1</version>
margarethaf68daa62017-09-21 02:11:24 +02007 <properties>
margarethaadd17632023-08-15 17:59:03 +02008 <java.version>17</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>
margarethacd1d7222023-08-16 10:23:29 +020016 <krill.version>[0.61.4,)</krill.version>
17 <koral.version>[0.40.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]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>
dependabot[bot]95465742023-02-17 17:56:32 +0000214 <dependencies>
215 <dependency>
216 <groupId>org.apache.maven.surefire</groupId>
217 <artifactId>surefire-junit47</artifactId>
dependabot[bot]2b051372023-06-07 17:56:39 +0000218 <version>3.1.2</version>
dependabot[bot]95465742023-02-17 17:56:32 +0000219 </dependency>
220 </dependencies>
margarethaf68daa62017-09-21 02:11:24 +0200221 <configuration>
margaretha0a45be12018-07-12 15:06:30 +0200222 <reuseForks>true</reuseForks>
223 <forkCount>1</forkCount>
224 <threadCount>10</threadCount>
Marc Kupietzddd9a8b2022-11-17 17:24:58 +0100225 <argLine>-Xmx512m
margaretha49cb6882018-07-04 04:19:54 +0200226 -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine>
margarethaf68daa62017-09-21 02:11:24 +0200227 <excludes>
Marc Kupietz0a378672022-04-30 09:35:27 +0200228 <exclude>de/ids_mannheim/korap/authentication/APIAuthenticationTest.java</exclude>
229 <exclude>de/ids_mannheim/korap/authentication/AuthenticationFilterTest.java</exclude>
230 <exclude>de/ids_mannheim/korap/authentication/Kustvakt*.java</exclude>
231 <exclude>de/ids_mannheim/korap/authentication/LdapTest.java</exclude>
232 <exclude>de/ids_mannheim/korap/authentication/Random*.java</exclude>
margaretha49cb6882018-07-04 04:19:54 +0200233 <exclude>de/ids_mannheim/korap/web/controller/TokenExpiryTest.java</exclude>
margaretha7cd52d12023-03-15 16:56:06 +0100234 <exclude>de/ids_mannheim/korap/web/controller/AdminLoadVCTest.java</exclude>
margarethaf68daa62017-09-21 02:11:24 +0200235 </excludes>
236 <includes>
237 <include>de/ids_mannheim/korap/**/*.java</include>
Marc Kupietz0a378672022-04-30 09:35:27 +0200238 <include>de/ids_mannheim/korap/authentication/LdapAuth3Test.java</include>
margarethaf68daa62017-09-21 02:11:24 +0200239 </includes>
240 </configuration>
241 </plugin>
margarethaf68daa62017-09-21 02:11:24 +0200242 </plugins>
243 </build>
244
245 <dependencies>
margaretha6a925fe2023-05-15 16:50:32 +0200246 <!-- backport -->
margarethaf68daa62017-09-21 02:11:24 +0200247 <dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200248 <groupId>backport-util-concurrent</groupId>
249 <artifactId>backport-util-concurrent</artifactId>
250 <version>3.1</version>
251 </dependency>
252
253 <!-- Jersey -->
254 <dependency>
255 <groupId>org.glassfish.jersey.core</groupId>
256 <artifactId>jersey-server</artifactId>
257 <version>${jersey.version}</version>
258 </dependency>
259
260 <dependency>
261 <groupId>org.glassfish.jersey.ext</groupId>
262 <artifactId>jersey-spring5</artifactId>
263 <version>${jersey.version}</version>
264 <exclusions>
265 <exclusion>
266 <groupId>org.springframework</groupId>
267 <artifactId>spring-core</artifactId>
268 </exclusion>
269 <exclusion>
270 <groupId>org.springframework</groupId>
271 <artifactId>spring-web</artifactId>
272 </exclusion>
273 <exclusion>
274 <groupId>org.springframework</groupId>
275 <artifactId>spring-beans</artifactId>
276 </exclusion>
277 <exclusion>
278 <groupId>org.springframework</groupId>
279 <artifactId>spring-context</artifactId>
280 </exclusion>
281 <exclusion>
282 <groupId>org.springframework</groupId>
283 <artifactId>spring-aop</artifactId>
284 </exclusion>
285 </exclusions>
286 </dependency>
287
288 <!-- JSON -->
289 <dependency>
290 <groupId>org.glassfish.jersey.media</groupId>
291 <artifactId>jersey-media-json-jackson</artifactId>
292 <version>${jersey.version}</version>
293 <exclusions>
294 <exclusion>
295 <groupId>com.fasterxml.jackson.core</groupId>
296 <artifactId>jackson-annotations</artifactId>
297 </exclusion>
298 <exclusion>
299 <groupId>com.fasterxml.jackson.core</groupId>
300 <artifactId>jackson-databind</artifactId>
301 </exclusion>
302 </exclusions>
303 </dependency>
304 <dependency>
305 <groupId>net.minidev</groupId>
306 <artifactId>json-smart</artifactId>
dependabot[bot]60d16bc2023-07-10 17:39:03 +0000307 <version>2.5.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200308 </dependency>
309
310 <!-- Jersey 1x originally uses codehaus -->
311 <dependency>
312 <groupId>com.fasterxml.jackson.jaxrs</groupId>
313 <artifactId>jackson-jaxrs-json-provider</artifactId>
dependabot[bot]6e1188d2023-05-17 17:56:52 +0000314 <version>2.15.1</version>
margaretha6a925fe2023-05-15 16:50:32 +0200315 </dependency>
316
317 <!-- Flyway -->
318 <dependency>
319 <groupId>org.flywaydb</groupId>
320 <artifactId>flyway-core</artifactId>
321 <version>${flyway.version}</version>
322 </dependency>
323
324 <!-- Logging -->
325 <dependency>
326 <groupId>org.apache.logging.log4j</groupId>
327 <artifactId>log4j-api</artifactId>
328 <version>${log4j.version}</version>
329 </dependency>
330 <dependency>
331 <groupId>org.apache.logging.log4j</groupId>
332 <artifactId>log4j-core</artifactId>
333 <version>${log4j.version}</version>
334 <exclusions>
335 <exclusion>
336 <groupId>org.apache.logging.log4j</groupId>
337 <artifactId>log4j-api</artifactId>
338 </exclusion>
339 </exclusions>
340 </dependency>
341 <dependency>
342 <groupId>org.apache.logging.log4j</groupId>
343 <artifactId>log4j-slf4j2-impl</artifactId>
344 <version>${log4j.version}</version>
345 </dependency>
346 <dependency>
347 <groupId>org.apache.logging.log4j</groupId>
348 <artifactId>log4j-jul</artifactId>
349 <version>${log4j.version}</version>
350 <exclusions>
351 <exclusion>
352 <groupId>org.apache.logging.log4j</groupId>
353 <artifactId>log4j-api</artifactId>
354 </exclusion>
355 </exclusions>
356 </dependency>
357 <dependency>
358 <groupId>org.slf4j</groupId>
359 <artifactId>slf4j-api</artifactId>
360 <version>2.0.7</version>
361 </dependency>
362
363 <!-- Java Assist -->
364 <dependency>
365 <groupId>org.javassist</groupId>
366 <artifactId>javassist</artifactId>
367 <version>3.29.2-GA</version>
368 </dependency>
369
370 <!-- EM:done -->
371
372 <dependency>
373 <groupId>junit</groupId>
374 <artifactId>junit</artifactId>
375 <version>4.13.2</version>
376 </dependency>
377 <dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200378 <groupId>joda-time</groupId>
379 <artifactId>joda-time</artifactId>
380 <version>2.12.5</version>
381 </dependency>
382 <dependency>
383 <groupId>de.ids_mannheim.korap</groupId>
384 <artifactId>Koral</artifactId>
385 <version>${koral.version}</version>
386 <exclusions>
387 <exclusion>
388 <groupId>org.sonatype.sisu</groupId>
389 <artifactId>sisu-guava</artifactId>
390 </exclusion>
391 <exclusion>
392 <groupId>org.eclipse.jetty</groupId>
393 <artifactId>jetty-servlet</artifactId>
394 </exclusion>
395 <exclusion>
396 <groupId>org.apache.logging.log4j</groupId>
397 <artifactId>log4j-api</artifactId>
398 </exclusion>
399 <exclusion>
400 <groupId>org.apache.logging.log4j</groupId>
401 <artifactId>log4j-core</artifactId>
402 </exclusion>
403 <exclusion>
404 <groupId>org.apache.logging.log4j</groupId>
405 <artifactId>log4j-slf4j-impl</artifactId>
406 </exclusion>
407 <exclusion>
408 <groupId>org.apache.logging.log4j</groupId>
409 <artifactId>log4j-jul</artifactId>
410 </exclusion>
411 </exclusions>
412 </dependency>
413
414 <dependency>
415 <groupId>org.xerial</groupId>
416 <artifactId>sqlite-jdbc</artifactId>
dependabot[bot]482f2502023-05-22 17:56:53 +0000417 <version>3.42.0.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200418 </dependency>
419
420 <dependency>
421 <groupId>org.apache.commons</groupId>
422 <artifactId>commons-dbcp2</artifactId>
423 <version>2.9.0</version>
424 </dependency>
425
426 <dependency>
427 <groupId>commons-validator</groupId>
428 <artifactId>commons-validator</artifactId>
429 <version>1.7</version>
430 </dependency>
431
432 <dependency>
433 <groupId>org.mindrot</groupId>
434 <artifactId>jbcrypt</artifactId>
435 <version>0.4</version>
436 </dependency>
437
438 <dependency>
439 <groupId>javax.annotation</groupId>
440 <artifactId>javax.annotation-api</artifactId>
441 <version>1.3.2</version>
442 </dependency>
443
444 <dependency>
445 <groupId>de.ids_mannheim.korap</groupId>
446 <artifactId>Krill</artifactId>
447 <version>${krill.version}</version>
448 <exclusions>
449 <exclusion>
450 <groupId>org.glassfish.jersey.containers</groupId>
451 <artifactId>jersey-container-grizzly2-http</artifactId>
452 </exclusion>
453 <exclusion>
454 <groupId>org.xerial</groupId>
455 <artifactId>sqlite-jdbc</artifactId>
456 </exclusion>
457 <exclusion>
458 <groupId>org.apache.logging.log4j</groupId>
459 <artifactId>log4j-api</artifactId>
460 </exclusion>
461 <exclusion>
462 <groupId>org.apache.logging.log4j</groupId>
463 <artifactId>log4j-core</artifactId>
464 </exclusion>
465 <exclusion>
466 <groupId>org.apache.logging.log4j</groupId>
467 <artifactId>log4j-slf4j-impl</artifactId>
468 </exclusion>
469 <exclusion>
470 <groupId>org.slf4j</groupId>
471 <artifactId>jul-to-slf4j</artifactId>
472 </exclusion>
473 </exclusions>
474 </dependency>
475 <dependency>
476 <groupId>org.reflections</groupId>
477 <artifactId>reflections</artifactId>
478 <version>0.10.2</version>
479 </dependency>
480
481 <!-- Spring -->
482 <dependency>
483 <groupId>org.springframework</groupId>
484 <artifactId>spring-core</artifactId>
485 <version>${spring.version}</version>
486 </dependency>
487 <dependency>
488 <groupId>org.springframework</groupId>
489 <artifactId>spring-web</artifactId>
490 <version>${spring.version}</version>
491 </dependency>
492 <dependency>
493 <groupId>org.springframework</groupId>
494 <artifactId>spring-orm</artifactId>
495 <version>${spring.version}</version>
496 </dependency>
497
498 <dependency>
499 <groupId>org.springframework</groupId>
500 <artifactId>spring-jdbc</artifactId>
501 <version>${spring.version}</version>
502 </dependency>
503 <dependency>
504 <groupId>org.springframework</groupId>
505 <artifactId>spring-tx</artifactId>
506 <version>${spring.version}</version>
507 </dependency>
508 <!-- <dependency>
509 <groupId>org.springframework.security</groupId>
510 <artifactId>spring-security-core</artifactId>
511 <version>${spring.version}</version>
512 </dependency>
513 <dependency>
514 <groupId>org.springframework.security</groupId>
515 <artifactId>spring-security-web</artifactId>
516 <version>${spring.version}</version>
517 </dependency> -->
518 <!-- EM: done -->
519 <dependency>
520 <groupId>org.springframework</groupId>
521 <artifactId>spring-context</artifactId>
522 <version>${spring.version}</version>
523 </dependency>
524 <dependency>
525 <groupId>org.springframework</groupId>
526 <artifactId>spring-context-support</artifactId>
527 <version>${spring.version}</version>
528 </dependency>
529 <dependency>
530 <groupId>org.springframework</groupId>
531 <artifactId>spring-test</artifactId>
532 <version>${spring.version}</version>
533 <scope>compile</scope>
534 </dependency>
535
536 <!-- apparently this order prevents the spring schemas from being overriden
537 in META-INF/spring.schemas, thus must stay like this -->
538 <dependency>
539 <groupId>org.springframework</groupId>
540 <artifactId>spring-aop</artifactId>
541 <version>${spring.version}</version>
542 </dependency>
543 <dependency>
544 <groupId>org.springframework</groupId>
545 <artifactId>spring-aspects</artifactId>
546 <version>${spring.version}</version>
547 </dependency>
548
549 <!-- end copy -->
550
551 <dependency>
552 <groupId>commons-collections</groupId>
553 <artifactId>commons-collections</artifactId>
554 <version>3.2.2</version>
555 </dependency>
556
557 <!-- jetty -->
558 <dependency>
559 <groupId>org.eclipse.jetty</groupId>
560 <artifactId>jetty-server</artifactId>
561 <version>${jetty.version}</version>
562 </dependency>
563 <dependency>
564 <groupId>org.eclipse.jetty</groupId>
565 <artifactId>jetty-servlet</artifactId>
566 <version>${jetty.version}</version>
567 </dependency>
568 <dependency>
569 <groupId>org.eclipse.jetty</groupId>
570 <artifactId>jetty-webapp</artifactId>
571 <version>${jetty.version}</version>
572 </dependency>
573
574 <dependency>
575 <groupId>asm</groupId>
576 <artifactId>asm</artifactId>
577 <version>3.3.1</version>
578 </dependency>
579
580 <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId>
581 <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions>
582 <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId>
583 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId>
584 </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId>
585 <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion>
586 <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId>
587 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId>
588 </exclusion> </exclusions> </dependency> -->
589 <dependency>
590 <groupId>org.apache.httpcomponents</groupId>
591 <artifactId>httpclient</artifactId>
592 <version>4.5.14</version>
593 </dependency>
594 <dependency>
595 <groupId>commons-io</groupId>
596 <artifactId>commons-io</artifactId>
dependabot[bot]79c1e342023-06-08 17:56:39 +0000597 <version>2.13.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200598 </dependency>
599
600 <!-- Hibernate -->
601 <dependency>
602 <groupId>org.hibernate</groupId>
603 <artifactId>hibernate-ehcache</artifactId>
604 <version>${hibernate.version}</version>
605 </dependency>
606 <dependency>
607 <groupId>org.hibernate</groupId>
608 <artifactId>hibernate-jpamodelgen</artifactId>
609 <version>${hibernate.version}</version>
610 <scope>provided</scope>
611 </dependency>
612 <dependency>
margarethaf558f7f2023-08-16 10:52:14 +0200613 <groupId>org.hibernate</groupId>
614 <artifactId>hibernate-entitymanager</artifactId>
615 <version>${hibernate.version}</version>
616 <exclusions>
617 <exclusion>
618 <groupId>org.javassist</groupId>
619 <artifactId>javassist</artifactId>
620 </exclusion>
621 </exclusions>
622 </dependency>
623 <dependency>
624 <groupId>org.hibernate</groupId>
625 <artifactId>hibernate-java8</artifactId>
626 <version>${hibernate.version}</version>
627 </dependency>
628 <dependency>
629 <groupId>org.hibernate</groupId>
630 <artifactId>hibernate-c3p0</artifactId>
631 <version>${hibernate.version}</version>
632 </dependency>
633
634 <!-- Sqlite -->
635 <dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200636 <groupId>com.github.gwenn</groupId>
637 <artifactId>sqlite-dialect</artifactId>
638 <version>0.1.0</version>
639 </dependency>
640
margarethaf558f7f2023-08-16 10:52:14 +0200641 <!-- servlet -->
margaretha6a925fe2023-05-15 16:50:32 +0200642 <dependency>
643 <groupId>javax.servlet</groupId>
644 <artifactId>javax.servlet-api</artifactId>
645 <version>4.0.1</version>
646 </dependency>
margarethaf558f7f2023-08-16 10:52:14 +0200647
margaretha6a925fe2023-05-15 16:50:32 +0200648 <dependency>
649 <groupId>org.apache.commons</groupId>
650 <artifactId>commons-text</artifactId>
651 <version>1.10.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200652 </dependency>
653 <!--<dependency>
margarethaf68daa62017-09-21 02:11:24 +0200654 <groupId>de.ids_mannheim.korap</groupId>
655 <artifactId>Kustvakt-core</artifactId>
margaretha4bae6a02023-03-13 09:50:33 +0100656 <version>${project.version}</version>
margaretha0ddaed62021-01-21 17:10:33 +0100657 </dependency>
658 <dependency>
659 <groupId>de.ids_mannheim.korap</groupId>
660 <artifactId>Kustvakt-core</artifactId>
margaretha4bae6a02023-03-13 09:50:33 +0100661 <version>${project.version}</version>
margaretha0ddaed62021-01-21 17:10:33 +0100662 <classifier>tests</classifier>
663 <type>test-jar</type>
664 <scope>test</scope>
margaretha6a925fe2023-05-15 16:50:32 +0200665 </dependency>-->
margarethaf558f7f2023-08-16 10:52:14 +0200666
margaretha54134902017-09-27 18:43:11 +0200667 <!-- LDAP -->
668 <dependency>
669 <groupId>com.novell.ldap</groupId>
670 <artifactId>jldap</artifactId>
671 <version>4.3</version>
672 </dependency>
margaretha54134902017-09-27 18:43:11 +0200673 <dependency>
674 <groupId>com.unboundid</groupId>
675 <artifactId>unboundid-ldapsdk</artifactId>
dependabot[bot]771d8fa2023-06-08 17:56:48 +0000676 <version>6.0.9</version>
margaretha54134902017-09-27 18:43:11 +0200677 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200678
margaretha34954472018-10-24 20:05:17 +0200679
margaretha318fec32017-10-24 12:11:58 +0200680 <!-- MySql -->
681 <dependency>
682 <groupId>mysql</groupId>
683 <artifactId>mysql-connector-java</artifactId>
dependabot[bot]c60ca472022-07-25 17:02:41 +0000684 <version>8.0.30</version>
margaretha318fec32017-10-24 12:11:58 +0200685 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200686
687 <!-- Jersey -->
688 <dependency>
abcpro10c746892022-11-03 22:47:04 +0000689 <groupId>org.glassfish.jersey.test-framework</groupId>
margarethaf68daa62017-09-21 02:11:24 +0200690 <artifactId>jersey-test-framework-core</artifactId>
691 <version>${jersey.version}</version>
692 <scope>test</scope>
margaretha368d2d32023-02-28 11:23:22 +0100693 <exclusions>
694 <exclusion>
695 <groupId>org.junit.jupiter</groupId>
696 <artifactId>junit-jupiter</artifactId>
697 </exclusion>
698 </exclusions>
margarethaf68daa62017-09-21 02:11:24 +0200699 </dependency>
700 <dependency>
abcpro10c746892022-11-03 22:47:04 +0000701 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
702 <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
margarethaf68daa62017-09-21 02:11:24 +0200703 <version>${jersey.version}</version>
704 <scope>test</scope>
margaretha368d2d32023-02-28 11:23:22 +0100705 <exclusions>
706 <exclusion>
707 <groupId>org.junit.jupiter</groupId>
708 <artifactId>junit-jupiter</artifactId>
709 </exclusion>
710 </exclusions>
margarethaf68daa62017-09-21 02:11:24 +0200711 </dependency>
margaretha34954472018-10-24 20:05:17 +0200712
margaretha58e18632018-02-15 13:04:42 +0100713 <!-- velocity -->
714 <dependency>
715 <groupId>org.apache.velocity</groupId>
716 <artifactId>velocity-engine-core</artifactId>
dependabot[bot]2d36f792021-03-08 05:46:34 +0000717 <version>2.3</version>
margaretha58e18632018-02-15 13:04:42 +0100718 </dependency>
719 <dependency>
margaretha327d3ad2021-03-15 16:19:35 +0100720 <groupId>org.apache.velocity.tools</groupId>
721 <artifactId>velocity-tools-generic</artifactId>
722 <version>3.1</version>
margaretha58e18632018-02-15 13:04:42 +0100723 </dependency>
724 <!-- mail -->
725 <dependency>
726 <groupId>com.sun.mail</groupId>
727 <artifactId>javax.mail</artifactId>
dependabot[bot]7baae302020-07-06 05:43:30 +0000728 <version>1.6.2</version>
margaretha58e18632018-02-15 13:04:42 +0100729 </dependency>
730 <dependency>
731 <groupId>javax.activation</groupId>
732 <artifactId>activation</artifactId>
733 <version>1.1.1</version>
734 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200735
margarethafb027f92018-04-23 20:00:13 +0200736 <!-- OAuth -->
737 <dependency>
738 <groupId>org.apache.oltu.oauth2</groupId>
739 <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
margarethae4034a82018-07-02 14:46:59 +0200740 <version>1.0.2</version>
margarethafb027f92018-04-23 20:00:13 +0200741 </dependency>
margarethae4034a82018-07-02 14:46:59 +0200742 <dependency>
743 <groupId>org.apache.oltu.oauth2</groupId>
744 <artifactId>org.apache.oltu.oauth2.client</artifactId>
745 <version>1.0.2</version>
746 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200747 <!-- JWT -->
748 <dependency>
749 <groupId>com.nimbusds</groupId>
750 <artifactId>nimbus-jose-jwt</artifactId>
dependabot[bot]92ad6942023-02-22 17:12:19 +0000751 <version>9.31</version>
margaretha235a6802018-06-06 19:21:53 +0200752 </dependency>
margaretha9c78e1a2018-06-27 14:12:35 +0200753
margarethaec247dd2018-06-12 21:55:46 +0200754 <!-- OpenId -->
755 <dependency>
margaretha9c78e1a2018-06-27 14:12:35 +0200756 <groupId>com.nimbusds</groupId>
757 <artifactId>oauth2-oidc-sdk</artifactId>
dependabot[bot]5a172a92023-08-04 17:04:35 +0000758 <version>10.13.2</version>
margarethaec247dd2018-06-12 21:55:46 +0200759 </dependency>
Marc Kupietzceea30c2020-05-15 16:00:03 +0200760
761 <!-- Project Lombok -->
762 <dependency>
763 <groupId>org.projectlombok</groupId>
764 <artifactId>lombok</artifactId>
dependabot[bot]949bef62023-05-25 17:56:39 +0000765 <version>1.18.28</version>
Marc Kupietzceea30c2020-05-15 16:00:03 +0200766 </dependency>
margaretha0ddaed62021-01-21 17:10:33 +0100767
768 <!-- Mockserver -->
769 <dependency>
770 <groupId>org.mock-server</groupId>
771 <artifactId>mockserver-netty</artifactId>
dependabot[bot]19fcf082023-01-12 17:01:24 +0000772 <version>5.15.0</version>
margaretha0ddaed62021-01-21 17:10:33 +0100773 <scope>test</scope>
774 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200775 </dependencies>
Akron63656052018-11-07 12:20:13 +0100776</project>