blob: bf4085cbd1a2b0eb3e276c07e320defc370cf68d [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>
margaretha03a270f2023-08-21 13:59:03 +020010 <jersey.version>3.1.3</jersey.version>
margaretha490a59b2023-08-21 10:44:16 +020011 <hibernate.ehcache.version>6.0.0.Alpha7</hibernate.ehcache.version>
12 <hibernate.version>6.1.7.Final</hibernate.version>
margaretha238df8f2023-08-16 12:38:12 +020013 <spring.version>6.0.11</spring.version>
14 <jetty.version>11.0.15</jetty.version>
dependabot[bot]019ec6f2023-07-27 17:49:15 +000015 <flyway.version>9.21.1</flyway.version>
dependabot[bot]77606532023-05-16 17:57:39 +000016 <log4j.version>2.20.0</log4j.version>
margarethacd1d7222023-08-16 10:23:29 +020017 <krill.version>[0.61.4,)</krill.version>
18 <koral.version>[0.40.1,)</koral.version>
margarethaf68daa62017-09-21 02:11:24 +020019 </properties>
margaretha34954472018-10-24 20:05:17 +020020 <profiles>
21 <profile>
22 <id>full</id>
23 <activation>
24 <activeByDefault>true</activeByDefault>
25 </activation>
26 <build>
27 <plugins>
28 <plugin>
29 <artifactId>maven-shade-plugin</artifactId>
dependabot[bot]3dea5c72023-06-16 17:56:55 +000030 <version>3.5.0</version>
margaretha34954472018-10-24 20:05:17 +020031 <executions>
32 <!-- option 1 -->
33 <execution>
34 <id>full</id>
35 <phase>package</phase>
36 <goals>
37 <goal>shade</goal>
38 </goals>
39 <configuration>
40 <finalName>Kustvakt-full-${project.version}</finalName>
41 <transformers>
42 <transformer
43 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
44 <mainClass>
45 de.ids_mannheim.korap.server.KustvaktServer
46 </mainClass>
47 </transformer>
48 <transformer
49 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
50 <resource>META-INF/spring.handlers
51 </resource>
52 </transformer>
53 <transformer
54 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
55 <resource>META-INF/spring.schemas
56 </resource>
57 </transformer>
58 </transformers>
margaretha34954472018-10-24 20:05:17 +020059 <filters>
margaretha92ad2ec2023-05-15 14:10:00 +020060 <filter>
61 <artifact>*:*</artifact>
62 <excludes>
63 <exclude>db/lite/**</exclude>
64 </excludes>
65 </filter>
66 </filters>
margaretha34954472018-10-24 20:05:17 +020067 </configuration>
68 </execution>
69 </executions>
70 </plugin>
71 </plugins>
72 </build>
73 </profile>
margaretha92ad2ec2023-05-15 14:10:00 +020074
75
76 <profile>
77 <id>lite</id>
78 <build>
79 <plugins>
80 <plugin>
81 <artifactId>maven-shade-plugin</artifactId>
dependabot[bot]3dea5c72023-06-16 17:56:55 +000082 <version>3.5.0</version>
margaretha92ad2ec2023-05-15 14:10:00 +020083 <executions>
84 <!--option 2-->
85 <execution>
86 <id>lite</id>
87 <phase>package</phase>
88 <goals>
89 <goal>shade</goal>
90 </goals>
91 <configuration>
92 <finalName>
93 Kustvakt-lite-${project.version}
94 </finalName>
95 <transformers>
96 <transformer
97 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
98 <mainClass>
99 de.ids_mannheim.korap.server.KustvaktLiteServer
100 </mainClass>
101 </transformer>
102 <transformer
103 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
104 <resource>META-INF/spring.handlers
105 </resource>
106 </transformer>
107 <transformer
108 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
109 <resource>META-INF/spring.schemas
110 </resource>
111 </transformer>
112 </transformers>
113 <filters>
114 <filter>
115 <artifact>*:*</artifact>
116 <excludes>
117 <exclude>db/mysql/**</exclude>
118 <exclude>db/predefined/**</exclude>
119 <exclude>db/sqlite/**</exclude>
120 <exclude>db/test/**</exclude>
121 <exclude>com.novell.ldap</exclude>
122 <exclude>com.unboundid</exclude>
123 <exclude>org.glassfish.jersey.test-framework*</exclude>
124 <exclude>org.apache.velocity*</exclude>
125 <exclude>com.sun.mail</exclude>
126 <exclude>javax.activation</exclude>
127 </excludes>
128 </filter>
129 </filters>
130 </configuration>
131 </execution>
132 </executions>
133 </plugin>
134 </plugins>
135 </build>
136 </profile>
137
margaretha34954472018-10-24 20:05:17 +0200138 </profiles>
margarethaf68daa62017-09-21 02:11:24 +0200139 <build>
margaretha7e1b7752023-07-17 13:56:42 +0200140 <resources>
141 <resource>
142 <directory>src/main/resources</directory>
143 <filtering>true</filtering>
144 <!--
margaretha34954472018-10-24 20:05:17 +0200145 <includes> <include>**/*.info</include> <include>**/*.xml</include> <include>**/*.conf</include>
146 <include>**/*.kustvakt</include> <include>**/*.properties</include> <include>**/*.sql</include>
margaretha7e1b7752023-07-17 13:56:42 +0200147 <include>**/*.vm</include> </includes>
148 -->
149 </resource>
150 </resources>
margarethaf68daa62017-09-21 02:11:24 +0200151 <testResources>
152 <testResource>
153 <directory>src/test/resources</directory>
margarethaf68daa62017-09-21 02:11:24 +0200154 </testResource>
155 <testResource>
156 <directory>src/main/resources</directory>
157 <filtering>true</filtering>
158 <includes>
159 <include>**/*.info</include>
margaretha3da7cd32018-10-22 17:42:52 +0200160 <include>**/*.json</include>
Marc Kupietz0a378672022-04-30 09:35:27 +0200161 <include>**/*.ldif</include>
margaretha490a59b2023-08-21 10:44:16 +0200162 <include>**/*.properties</include>
margarethaf68daa62017-09-21 02:11:24 +0200163 </includes>
164 </testResource>
165 </testResources>
166 <plugins>
167 <!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html -->
168 <plugin>
169 <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
170 <artifactId>maven-java-formatter-plugin</artifactId>
171 <version>0.4</version>
172 <configuration>
173 <configFile>${project.basedir}/Format.xml</configFile>
174 <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion>
175 <compilerSource>${java.version}</compilerSource>
176 <compilerCompliance>${java.version}</compilerCompliance>
177 <compilerTargetPlatform>${java.version}</compilerTargetPlatform>
178 </configuration>
179 <!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution>
180 </executions> -->
181 </plugin>
182 <plugin>
183 <groupId>org.apache.maven.plugins</groupId>
184 <artifactId>maven-compiler-plugin</artifactId>
margaretha7e1fa0f2023-03-06 16:19:09 +0100185 <version>3.11.0</version>
margarethaf68daa62017-09-21 02:11:24 +0200186 <configuration>
187 <compilerVersion>${java.version}</compilerVersion>
188 <source>${java.version}</source>
189 <target>${java.version}</target>
margaretha58e18632018-02-15 13:04:42 +0100190 <!-- <compilerArguments> <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
191 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
192 </compilerArguments> -->
Marc Kupietz483db752020-03-25 08:25:35 +0100193 <annotationProcessors>
margarethafc7d7772018-01-16 17:48:17 +0100194 <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
195 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
Marc Kupietz483db752020-03-25 08:25:35 +0100196 </annotationProcessors>
margarethaf68daa62017-09-21 02:11:24 +0200197 </configuration>
198 </plugin>
margarethaf68daa62017-09-21 02:11:24 +0200199 <plugin>
200 <groupId>org.apache.maven.plugins</groupId>
margaretha6a925fe2023-05-15 16:50:32 +0200201 <artifactId>maven-source-plugin</artifactId>
dependabot[bot]1632cdb2023-05-22 17:56:43 +0000202 <version>3.3.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200203 <executions>
204 <execution>
205 <id>attach-sources</id>
206 <goals>
207 <goal>jar</goal>
208 </goals>
209 </execution>
210 </executions>
211 </plugin>
212 <plugin>
213 <groupId>org.apache.maven.plugins</groupId>
margarethaf68daa62017-09-21 02:11:24 +0200214 <artifactId>maven-surefire-plugin</artifactId>
dependabot[bot]2b051372023-06-07 17:56:39 +0000215 <version>3.1.2</version>
dependabot[bot]95465742023-02-17 17:56:32 +0000216 <dependencies>
217 <dependency>
218 <groupId>org.apache.maven.surefire</groupId>
219 <artifactId>surefire-junit47</artifactId>
dependabot[bot]2b051372023-06-07 17:56:39 +0000220 <version>3.1.2</version>
dependabot[bot]95465742023-02-17 17:56:32 +0000221 </dependency>
222 </dependencies>
margarethaf68daa62017-09-21 02:11:24 +0200223 <configuration>
margaretha0a45be12018-07-12 15:06:30 +0200224 <reuseForks>true</reuseForks>
225 <forkCount>1</forkCount>
226 <threadCount>10</threadCount>
Marc Kupietzddd9a8b2022-11-17 17:24:58 +0100227 <argLine>-Xmx512m
margaretha49cb6882018-07-04 04:19:54 +0200228 -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine>
margarethaf68daa62017-09-21 02:11:24 +0200229 <excludes>
Marc Kupietz0a378672022-04-30 09:35:27 +0200230 <exclude>de/ids_mannheim/korap/authentication/APIAuthenticationTest.java</exclude>
231 <exclude>de/ids_mannheim/korap/authentication/AuthenticationFilterTest.java</exclude>
232 <exclude>de/ids_mannheim/korap/authentication/Kustvakt*.java</exclude>
233 <exclude>de/ids_mannheim/korap/authentication/LdapTest.java</exclude>
234 <exclude>de/ids_mannheim/korap/authentication/Random*.java</exclude>
margaretha49cb6882018-07-04 04:19:54 +0200235 <exclude>de/ids_mannheim/korap/web/controller/TokenExpiryTest.java</exclude>
margaretha7cd52d12023-03-15 16:56:06 +0100236 <exclude>de/ids_mannheim/korap/web/controller/AdminLoadVCTest.java</exclude>
margarethaf68daa62017-09-21 02:11:24 +0200237 </excludes>
238 <includes>
239 <include>de/ids_mannheim/korap/**/*.java</include>
Marc Kupietz0a378672022-04-30 09:35:27 +0200240 <include>de/ids_mannheim/korap/authentication/LdapAuth3Test.java</include>
margarethaf68daa62017-09-21 02:11:24 +0200241 </includes>
242 </configuration>
243 </plugin>
margarethaf68daa62017-09-21 02:11:24 +0200244 </plugins>
245 </build>
246
247 <dependencies>
margaretha6a925fe2023-05-15 16:50:32 +0200248 <!-- backport -->
margarethaf68daa62017-09-21 02:11:24 +0200249 <dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200250 <groupId>backport-util-concurrent</groupId>
251 <artifactId>backport-util-concurrent</artifactId>
252 <version>3.1</version>
253 </dependency>
254
255 <!-- Jersey -->
256 <dependency>
257 <groupId>org.glassfish.jersey.core</groupId>
258 <artifactId>jersey-server</artifactId>
259 <version>${jersey.version}</version>
260 </dependency>
261
262 <dependency>
263 <groupId>org.glassfish.jersey.ext</groupId>
margaretha238df8f2023-08-16 12:38:12 +0200264 <artifactId>jersey-spring6</artifactId>
margaretha6a925fe2023-05-15 16:50:32 +0200265 <version>${jersey.version}</version>
266 <exclusions>
267 <exclusion>
268 <groupId>org.springframework</groupId>
269 <artifactId>spring-core</artifactId>
270 </exclusion>
271 <exclusion>
272 <groupId>org.springframework</groupId>
273 <artifactId>spring-web</artifactId>
274 </exclusion>
275 <exclusion>
276 <groupId>org.springframework</groupId>
277 <artifactId>spring-beans</artifactId>
278 </exclusion>
279 <exclusion>
280 <groupId>org.springframework</groupId>
281 <artifactId>spring-context</artifactId>
282 </exclusion>
283 <exclusion>
284 <groupId>org.springframework</groupId>
285 <artifactId>spring-aop</artifactId>
286 </exclusion>
287 </exclusions>
288 </dependency>
289
290 <!-- JSON -->
291 <dependency>
292 <groupId>org.glassfish.jersey.media</groupId>
293 <artifactId>jersey-media-json-jackson</artifactId>
294 <version>${jersey.version}</version>
margaretha03a270f2023-08-21 13:59:03 +0200295 <!--<exclusions>
margaretha6a925fe2023-05-15 16:50:32 +0200296 <exclusion>
297 <groupId>com.fasterxml.jackson.core</groupId>
298 <artifactId>jackson-annotations</artifactId>
299 </exclusion>
300 <exclusion>
301 <groupId>com.fasterxml.jackson.core</groupId>
302 <artifactId>jackson-databind</artifactId>
303 </exclusion>
margaretha03a270f2023-08-21 13:59:03 +0200304 </exclusions>-->
margaretha6a925fe2023-05-15 16:50:32 +0200305 </dependency>
306 <dependency>
307 <groupId>net.minidev</groupId>
308 <artifactId>json-smart</artifactId>
dependabot[bot]60d16bc2023-07-10 17:39:03 +0000309 <version>2.5.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200310 </dependency>
311
312 <!-- Jersey 1x originally uses codehaus -->
margaretha03a270f2023-08-21 13:59:03 +0200313 <!--<dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200314 <groupId>com.fasterxml.jackson.jaxrs</groupId>
315 <artifactId>jackson-jaxrs-json-provider</artifactId>
dependabot[bot]6e1188d2023-05-17 17:56:52 +0000316 <version>2.15.1</version>
margaretha6a925fe2023-05-15 16:50:32 +0200317 </dependency>
margaretha03a270f2023-08-21 13:59:03 +0200318 <dependency>
319 <groupId>com.fasterxml.jackson.jakarta.rs</groupId>
320 <artifactId>jackson-jakarta-rs-json-provider</artifactId>
321 <version>2.15.2</version>
322 </dependency>-->
323
margaretha6a925fe2023-05-15 16:50:32 +0200324
325 <!-- Flyway -->
326 <dependency>
327 <groupId>org.flywaydb</groupId>
328 <artifactId>flyway-core</artifactId>
329 <version>${flyway.version}</version>
330 </dependency>
331
332 <!-- Logging -->
333 <dependency>
334 <groupId>org.apache.logging.log4j</groupId>
335 <artifactId>log4j-api</artifactId>
336 <version>${log4j.version}</version>
337 </dependency>
338 <dependency>
339 <groupId>org.apache.logging.log4j</groupId>
340 <artifactId>log4j-core</artifactId>
341 <version>${log4j.version}</version>
342 <exclusions>
343 <exclusion>
344 <groupId>org.apache.logging.log4j</groupId>
345 <artifactId>log4j-api</artifactId>
346 </exclusion>
347 </exclusions>
348 </dependency>
349 <dependency>
350 <groupId>org.apache.logging.log4j</groupId>
351 <artifactId>log4j-slf4j2-impl</artifactId>
352 <version>${log4j.version}</version>
353 </dependency>
354 <dependency>
355 <groupId>org.apache.logging.log4j</groupId>
356 <artifactId>log4j-jul</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.slf4j</groupId>
367 <artifactId>slf4j-api</artifactId>
368 <version>2.0.7</version>
369 </dependency>
370
371 <!-- Java Assist -->
372 <dependency>
373 <groupId>org.javassist</groupId>
374 <artifactId>javassist</artifactId>
375 <version>3.29.2-GA</version>
376 </dependency>
377
378 <!-- EM:done -->
379
380 <dependency>
381 <groupId>junit</groupId>
382 <artifactId>junit</artifactId>
383 <version>4.13.2</version>
384 </dependency>
385 <dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200386 <groupId>joda-time</groupId>
387 <artifactId>joda-time</artifactId>
388 <version>2.12.5</version>
389 </dependency>
390 <dependency>
391 <groupId>de.ids_mannheim.korap</groupId>
392 <artifactId>Koral</artifactId>
393 <version>${koral.version}</version>
394 <exclusions>
395 <exclusion>
396 <groupId>org.sonatype.sisu</groupId>
397 <artifactId>sisu-guava</artifactId>
398 </exclusion>
399 <exclusion>
400 <groupId>org.eclipse.jetty</groupId>
401 <artifactId>jetty-servlet</artifactId>
402 </exclusion>
403 <exclusion>
404 <groupId>org.apache.logging.log4j</groupId>
405 <artifactId>log4j-api</artifactId>
406 </exclusion>
407 <exclusion>
408 <groupId>org.apache.logging.log4j</groupId>
409 <artifactId>log4j-core</artifactId>
410 </exclusion>
411 <exclusion>
412 <groupId>org.apache.logging.log4j</groupId>
413 <artifactId>log4j-slf4j-impl</artifactId>
414 </exclusion>
415 <exclusion>
416 <groupId>org.apache.logging.log4j</groupId>
417 <artifactId>log4j-jul</artifactId>
418 </exclusion>
419 </exclusions>
420 </dependency>
421
422 <dependency>
423 <groupId>org.xerial</groupId>
424 <artifactId>sqlite-jdbc</artifactId>
dependabot[bot]482f2502023-05-22 17:56:53 +0000425 <version>3.42.0.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200426 </dependency>
427
428 <dependency>
429 <groupId>org.apache.commons</groupId>
430 <artifactId>commons-dbcp2</artifactId>
431 <version>2.9.0</version>
432 </dependency>
433
434 <dependency>
435 <groupId>commons-validator</groupId>
436 <artifactId>commons-validator</artifactId>
437 <version>1.7</version>
438 </dependency>
439
440 <dependency>
441 <groupId>org.mindrot</groupId>
442 <artifactId>jbcrypt</artifactId>
443 <version>0.4</version>
444 </dependency>
445
446 <dependency>
447 <groupId>javax.annotation</groupId>
448 <artifactId>javax.annotation-api</artifactId>
449 <version>1.3.2</version>
450 </dependency>
451
452 <dependency>
453 <groupId>de.ids_mannheim.korap</groupId>
454 <artifactId>Krill</artifactId>
455 <version>${krill.version}</version>
456 <exclusions>
457 <exclusion>
margaretha03a270f2023-08-21 13:59:03 +0200458 <groupId>com.fasterxml.jackson.jaxrs</groupId>
459 <artifactId>jackson-jaxrs-json-provider</artifactId>
460 </exclusion>
461 <exclusion>
margaretha6a925fe2023-05-15 16:50:32 +0200462 <groupId>org.glassfish.jersey.containers</groupId>
463 <artifactId>jersey-container-grizzly2-http</artifactId>
464 </exclusion>
465 <exclusion>
466 <groupId>org.xerial</groupId>
467 <artifactId>sqlite-jdbc</artifactId>
468 </exclusion>
469 <exclusion>
470 <groupId>org.apache.logging.log4j</groupId>
471 <artifactId>log4j-api</artifactId>
472 </exclusion>
473 <exclusion>
474 <groupId>org.apache.logging.log4j</groupId>
475 <artifactId>log4j-core</artifactId>
476 </exclusion>
477 <exclusion>
478 <groupId>org.apache.logging.log4j</groupId>
479 <artifactId>log4j-slf4j-impl</artifactId>
480 </exclusion>
481 <exclusion>
482 <groupId>org.slf4j</groupId>
483 <artifactId>jul-to-slf4j</artifactId>
484 </exclusion>
485 </exclusions>
486 </dependency>
487 <dependency>
488 <groupId>org.reflections</groupId>
489 <artifactId>reflections</artifactId>
490 <version>0.10.2</version>
491 </dependency>
492
493 <!-- Spring -->
494 <dependency>
495 <groupId>org.springframework</groupId>
496 <artifactId>spring-core</artifactId>
497 <version>${spring.version}</version>
498 </dependency>
499 <dependency>
500 <groupId>org.springframework</groupId>
501 <artifactId>spring-web</artifactId>
502 <version>${spring.version}</version>
503 </dependency>
504 <dependency>
505 <groupId>org.springframework</groupId>
506 <artifactId>spring-orm</artifactId>
507 <version>${spring.version}</version>
508 </dependency>
509
510 <dependency>
511 <groupId>org.springframework</groupId>
512 <artifactId>spring-jdbc</artifactId>
513 <version>${spring.version}</version>
514 </dependency>
515 <dependency>
516 <groupId>org.springframework</groupId>
517 <artifactId>spring-tx</artifactId>
518 <version>${spring.version}</version>
519 </dependency>
520 <!-- <dependency>
521 <groupId>org.springframework.security</groupId>
522 <artifactId>spring-security-core</artifactId>
523 <version>${spring.version}</version>
524 </dependency>
525 <dependency>
526 <groupId>org.springframework.security</groupId>
527 <artifactId>spring-security-web</artifactId>
528 <version>${spring.version}</version>
529 </dependency> -->
530 <!-- EM: done -->
531 <dependency>
532 <groupId>org.springframework</groupId>
533 <artifactId>spring-context</artifactId>
534 <version>${spring.version}</version>
535 </dependency>
536 <dependency>
537 <groupId>org.springframework</groupId>
538 <artifactId>spring-context-support</artifactId>
539 <version>${spring.version}</version>
540 </dependency>
541 <dependency>
542 <groupId>org.springframework</groupId>
543 <artifactId>spring-test</artifactId>
544 <version>${spring.version}</version>
545 <scope>compile</scope>
546 </dependency>
547
548 <!-- apparently this order prevents the spring schemas from being overriden
549 in META-INF/spring.schemas, thus must stay like this -->
550 <dependency>
551 <groupId>org.springframework</groupId>
552 <artifactId>spring-aop</artifactId>
553 <version>${spring.version}</version>
554 </dependency>
555 <dependency>
556 <groupId>org.springframework</groupId>
557 <artifactId>spring-aspects</artifactId>
558 <version>${spring.version}</version>
559 </dependency>
560
561 <!-- end copy -->
562
563 <dependency>
564 <groupId>commons-collections</groupId>
565 <artifactId>commons-collections</artifactId>
566 <version>3.2.2</version>
567 </dependency>
568
569 <!-- jetty -->
570 <dependency>
571 <groupId>org.eclipse.jetty</groupId>
572 <artifactId>jetty-server</artifactId>
573 <version>${jetty.version}</version>
574 </dependency>
575 <dependency>
576 <groupId>org.eclipse.jetty</groupId>
577 <artifactId>jetty-servlet</artifactId>
578 <version>${jetty.version}</version>
579 </dependency>
580 <dependency>
581 <groupId>org.eclipse.jetty</groupId>
582 <artifactId>jetty-webapp</artifactId>
583 <version>${jetty.version}</version>
584 </dependency>
585
586 <dependency>
587 <groupId>asm</groupId>
588 <artifactId>asm</artifactId>
589 <version>3.3.1</version>
590 </dependency>
591
592 <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId>
593 <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions>
594 <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId>
595 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId>
596 </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId>
597 <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion>
598 <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId>
599 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId>
600 </exclusion> </exclusions> </dependency> -->
601 <dependency>
602 <groupId>org.apache.httpcomponents</groupId>
603 <artifactId>httpclient</artifactId>
604 <version>4.5.14</version>
605 </dependency>
606 <dependency>
607 <groupId>commons-io</groupId>
608 <artifactId>commons-io</artifactId>
dependabot[bot]79c1e342023-06-08 17:56:39 +0000609 <version>2.13.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200610 </dependency>
611
612 <!-- Hibernate -->
613 <dependency>
margaretha490a59b2023-08-21 10:44:16 +0200614 <groupId>org.hibernate.orm</groupId>
615 <artifactId>hibernate-core</artifactId>
margaretha6a925fe2023-05-15 16:50:32 +0200616 <version>${hibernate.version}</version>
617 </dependency>
618 <dependency>
margaretha490a59b2023-08-21 10:44:16 +0200619 <groupId>org.hibernate.orm</groupId>
margaretha6a925fe2023-05-15 16:50:32 +0200620 <artifactId>hibernate-jpamodelgen</artifactId>
621 <version>${hibernate.version}</version>
margaretha6a925fe2023-05-15 16:50:32 +0200622 </dependency>
623 <dependency>
margaretha490a59b2023-08-21 10:44:16 +0200624 <groupId>org.hibernate.orm</groupId>
625 <artifactId>hibernate-ehcache</artifactId>
626 <version>${hibernate.ehcache.version}</version>
margarethaf558f7f2023-08-16 10:52:14 +0200627 <exclusions>
628 <exclusion>
margaretha490a59b2023-08-21 10:44:16 +0200629 <groupId>org.hibernate</groupId>
630 <artifactId>hibernate-core</artifactId>
margarethaf558f7f2023-08-16 10:52:14 +0200631 </exclusion>
632 </exclusions>
633 </dependency>
634 <dependency>
margaretha490a59b2023-08-21 10:44:16 +0200635 <groupId>org.hibernate.orm</groupId>
margarethaf558f7f2023-08-16 10:52:14 +0200636 <artifactId>hibernate-c3p0</artifactId>
637 <version>${hibernate.version}</version>
638 </dependency>
639
640 <!-- Sqlite -->
margaretha490a59b2023-08-21 10:44:16 +0200641 <!--<dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200642 <groupId>com.github.gwenn</groupId>
643 <artifactId>sqlite-dialect</artifactId>
644 <version>0.1.0</version>
margaretha490a59b2023-08-21 10:44:16 +0200645 </dependency>-->
646 <dependency>
647 <groupId>org.hibernate.orm</groupId>
648 <artifactId>hibernate-community-dialects</artifactId>
649 <version>${hibernate.version}</version>
margaretha6a925fe2023-05-15 16:50:32 +0200650 </dependency>
651
margaretha238df8f2023-08-16 12:38:12 +0200652 <dependency>
653 <groupId>jakarta.persistence</groupId>
654 <artifactId>jakarta.persistence-api</artifactId>
655 <version>3.1.0</version>
656 </dependency>
657
margarethaf558f7f2023-08-16 10:52:14 +0200658 <!-- servlet -->
margaretha6a925fe2023-05-15 16:50:32 +0200659 <dependency>
margaretha96c309d2023-08-16 12:24:12 +0200660 <groupId>jakarta.servlet</groupId>
661 <artifactId>jakarta.servlet-api</artifactId>
662 <version>6.0.0</version>
663 <scope>provided</scope>
664 </dependency>
665
margaretha238df8f2023-08-16 12:38:12 +0200666 <!-- needed by apache Oltu -->
margaretha96c309d2023-08-16 12:24:12 +0200667 <dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200668 <groupId>javax.servlet</groupId>
669 <artifactId>javax.servlet-api</artifactId>
670 <version>4.0.1</version>
671 </dependency>
margarethaf558f7f2023-08-16 10:52:14 +0200672
margaretha6a925fe2023-05-15 16:50:32 +0200673 <dependency>
674 <groupId>org.apache.commons</groupId>
675 <artifactId>commons-text</artifactId>
676 <version>1.10.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200677 </dependency>
678 <!--<dependency>
margarethaf68daa62017-09-21 02:11:24 +0200679 <groupId>de.ids_mannheim.korap</groupId>
680 <artifactId>Kustvakt-core</artifactId>
margaretha4bae6a02023-03-13 09:50:33 +0100681 <version>${project.version}</version>
margaretha0ddaed62021-01-21 17:10:33 +0100682 </dependency>
683 <dependency>
684 <groupId>de.ids_mannheim.korap</groupId>
685 <artifactId>Kustvakt-core</artifactId>
margaretha4bae6a02023-03-13 09:50:33 +0100686 <version>${project.version}</version>
margaretha0ddaed62021-01-21 17:10:33 +0100687 <classifier>tests</classifier>
688 <type>test-jar</type>
689 <scope>test</scope>
margaretha6a925fe2023-05-15 16:50:32 +0200690 </dependency>-->
margarethaf558f7f2023-08-16 10:52:14 +0200691
margaretha54134902017-09-27 18:43:11 +0200692 <!-- LDAP -->
693 <dependency>
694 <groupId>com.novell.ldap</groupId>
695 <artifactId>jldap</artifactId>
696 <version>4.3</version>
697 </dependency>
margaretha54134902017-09-27 18:43:11 +0200698 <dependency>
699 <groupId>com.unboundid</groupId>
700 <artifactId>unboundid-ldapsdk</artifactId>
dependabot[bot]771d8fa2023-06-08 17:56:48 +0000701 <version>6.0.9</version>
margaretha54134902017-09-27 18:43:11 +0200702 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200703
margaretha34954472018-10-24 20:05:17 +0200704
margaretha318fec32017-10-24 12:11:58 +0200705 <!-- MySql -->
706 <dependency>
707 <groupId>mysql</groupId>
708 <artifactId>mysql-connector-java</artifactId>
dependabot[bot]c60ca472022-07-25 17:02:41 +0000709 <version>8.0.30</version>
margaretha318fec32017-10-24 12:11:58 +0200710 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200711
712 <!-- Jersey -->
713 <dependency>
abcpro10c746892022-11-03 22:47:04 +0000714 <groupId>org.glassfish.jersey.test-framework</groupId>
margarethaf68daa62017-09-21 02:11:24 +0200715 <artifactId>jersey-test-framework-core</artifactId>
716 <version>${jersey.version}</version>
717 <scope>test</scope>
margaretha368d2d32023-02-28 11:23:22 +0100718 <exclusions>
719 <exclusion>
720 <groupId>org.junit.jupiter</groupId>
721 <artifactId>junit-jupiter</artifactId>
722 </exclusion>
723 </exclusions>
margarethaf68daa62017-09-21 02:11:24 +0200724 </dependency>
725 <dependency>
abcpro10c746892022-11-03 22:47:04 +0000726 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
727 <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
margarethaf68daa62017-09-21 02:11:24 +0200728 <version>${jersey.version}</version>
729 <scope>test</scope>
margaretha368d2d32023-02-28 11:23:22 +0100730 <exclusions>
731 <exclusion>
732 <groupId>org.junit.jupiter</groupId>
733 <artifactId>junit-jupiter</artifactId>
734 </exclusion>
735 </exclusions>
margarethaf68daa62017-09-21 02:11:24 +0200736 </dependency>
margaretha34954472018-10-24 20:05:17 +0200737
margaretha58e18632018-02-15 13:04:42 +0100738 <!-- velocity -->
739 <dependency>
740 <groupId>org.apache.velocity</groupId>
741 <artifactId>velocity-engine-core</artifactId>
dependabot[bot]2d36f792021-03-08 05:46:34 +0000742 <version>2.3</version>
margaretha58e18632018-02-15 13:04:42 +0100743 </dependency>
744 <dependency>
margaretha327d3ad2021-03-15 16:19:35 +0100745 <groupId>org.apache.velocity.tools</groupId>
746 <artifactId>velocity-tools-generic</artifactId>
747 <version>3.1</version>
margaretha58e18632018-02-15 13:04:42 +0100748 </dependency>
margaretha238df8f2023-08-16 12:38:12 +0200749
750 <!-- Mail -->
margaretha58e18632018-02-15 13:04:42 +0100751 <dependency>
margaretha238df8f2023-08-16 12:38:12 +0200752 <groupId>com.sun.mail</groupId>
753 <artifactId>jakarta.mail</artifactId>
754 <version>2.0.1</version>
margaretha58e18632018-02-15 13:04:42 +0100755 </dependency>
margaretha238df8f2023-08-16 12:38:12 +0200756
margaretha58e18632018-02-15 13:04:42 +0100757 <dependency>
margaretha490a59b2023-08-21 10:44:16 +0200758 <groupId>jakarta.activation</groupId>
759 <artifactId>jakarta.activation-api</artifactId>
760 <version>2.1.2</version>
761 </dependency>
762
763 <!--<dependency>
margaretha58e18632018-02-15 13:04:42 +0100764 <groupId>javax.activation</groupId>
765 <artifactId>activation</artifactId>
766 <version>1.1.1</version>
margaretha490a59b2023-08-21 10:44:16 +0200767 </dependency>-->
margaretha235a6802018-06-06 19:21:53 +0200768
margarethafb027f92018-04-23 20:00:13 +0200769 <!-- OAuth -->
770 <dependency>
771 <groupId>org.apache.oltu.oauth2</groupId>
772 <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
margarethae4034a82018-07-02 14:46:59 +0200773 <version>1.0.2</version>
margarethafb027f92018-04-23 20:00:13 +0200774 </dependency>
margarethae4034a82018-07-02 14:46:59 +0200775 <dependency>
776 <groupId>org.apache.oltu.oauth2</groupId>
777 <artifactId>org.apache.oltu.oauth2.client</artifactId>
778 <version>1.0.2</version>
779 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200780 <!-- JWT -->
781 <dependency>
782 <groupId>com.nimbusds</groupId>
783 <artifactId>nimbus-jose-jwt</artifactId>
dependabot[bot]92ad6942023-02-22 17:12:19 +0000784 <version>9.31</version>
margaretha235a6802018-06-06 19:21:53 +0200785 </dependency>
margaretha9c78e1a2018-06-27 14:12:35 +0200786
margarethaec247dd2018-06-12 21:55:46 +0200787 <!-- OpenId -->
788 <dependency>
margaretha9c78e1a2018-06-27 14:12:35 +0200789 <groupId>com.nimbusds</groupId>
790 <artifactId>oauth2-oidc-sdk</artifactId>
dependabot[bot]5a172a92023-08-04 17:04:35 +0000791 <version>10.13.2</version>
margarethaec247dd2018-06-12 21:55:46 +0200792 </dependency>
Marc Kupietzceea30c2020-05-15 16:00:03 +0200793
794 <!-- Project Lombok -->
795 <dependency>
796 <groupId>org.projectlombok</groupId>
797 <artifactId>lombok</artifactId>
dependabot[bot]949bef62023-05-25 17:56:39 +0000798 <version>1.18.28</version>
Marc Kupietzceea30c2020-05-15 16:00:03 +0200799 </dependency>
margaretha0ddaed62021-01-21 17:10:33 +0100800
801 <!-- Mockserver -->
802 <dependency>
803 <groupId>org.mock-server</groupId>
804 <artifactId>mockserver-netty</artifactId>
dependabot[bot]19fcf082023-01-12 17:01:24 +0000805 <version>5.15.0</version>
margaretha0ddaed62021-01-21 17:10:33 +0100806 <scope>test</scope>
807 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200808 </dependencies>
Akron63656052018-11-07 12:20:13 +0100809</project>