blob: cdf6363b6eab21fb6efd847ec9320374a75a1239 [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>
margaretha93bfbea2023-11-06 21:09:21 +01006 <version>0.72-SNAPSHOT</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]8bdc8a32023-11-08 09:50:04 +000016 <log4j.version>2.21.1</log4j.version>
margaretha93bfbea2023-11-06 21:09:21 +010017 <krill.version>[0.61.3,)</krill.version>
margaretha4b883ec2023-09-25 12:21:24 +020018 <koral.version>[0.41,)</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]0c6e0d02023-09-25 17:22:46 +000030 <version>3.5.1</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]0c6e0d02023-09-25 17:22:46 +000082 <version>3.5.1</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>
margarethaf68daa62017-09-21 02:11:24 +0200216 <configuration>
margaretha0a45be12018-07-12 15:06:30 +0200217 <reuseForks>true</reuseForks>
218 <forkCount>1</forkCount>
219 <threadCount>10</threadCount>
Marc Kupietzddd9a8b2022-11-17 17:24:58 +0100220 <argLine>-Xmx512m
margaretha49cb6882018-07-04 04:19:54 +0200221 -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine>
margarethaf68daa62017-09-21 02:11:24 +0200222 <excludes>
Marc Kupietz0a378672022-04-30 09:35:27 +0200223 <exclude>de/ids_mannheim/korap/authentication/APIAuthenticationTest.java</exclude>
224 <exclude>de/ids_mannheim/korap/authentication/AuthenticationFilterTest.java</exclude>
225 <exclude>de/ids_mannheim/korap/authentication/Kustvakt*.java</exclude>
226 <exclude>de/ids_mannheim/korap/authentication/LdapTest.java</exclude>
227 <exclude>de/ids_mannheim/korap/authentication/Random*.java</exclude>
margaretha49cb6882018-07-04 04:19:54 +0200228 <exclude>de/ids_mannheim/korap/web/controller/TokenExpiryTest.java</exclude>
margaretha7cd52d12023-03-15 16:56:06 +0100229 <exclude>de/ids_mannheim/korap/web/controller/AdminLoadVCTest.java</exclude>
margarethaf68daa62017-09-21 02:11:24 +0200230 </excludes>
231 <includes>
232 <include>de/ids_mannheim/korap/**/*.java</include>
Marc Kupietz0a378672022-04-30 09:35:27 +0200233 <include>de/ids_mannheim/korap/authentication/LdapAuth3Test.java</include>
margarethaf68daa62017-09-21 02:11:24 +0200234 </includes>
235 </configuration>
236 </plugin>
margarethaf68daa62017-09-21 02:11:24 +0200237 </plugins>
238 </build>
239
240 <dependencies>
margaretha6a925fe2023-05-15 16:50:32 +0200241 <!-- backport -->
margarethaf68daa62017-09-21 02:11:24 +0200242 <dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200243 <groupId>backport-util-concurrent</groupId>
244 <artifactId>backport-util-concurrent</artifactId>
245 <version>3.1</version>
246 </dependency>
247
248 <!-- Jersey -->
249 <dependency>
250 <groupId>org.glassfish.jersey.core</groupId>
251 <artifactId>jersey-server</artifactId>
252 <version>${jersey.version}</version>
253 </dependency>
254
255 <dependency>
256 <groupId>org.glassfish.jersey.ext</groupId>
margaretha238df8f2023-08-16 12:38:12 +0200257 <artifactId>jersey-spring6</artifactId>
margaretha6a925fe2023-05-15 16:50:32 +0200258 <version>${jersey.version}</version>
259 <exclusions>
260 <exclusion>
261 <groupId>org.springframework</groupId>
262 <artifactId>spring-core</artifactId>
263 </exclusion>
264 <exclusion>
265 <groupId>org.springframework</groupId>
266 <artifactId>spring-web</artifactId>
267 </exclusion>
268 <exclusion>
269 <groupId>org.springframework</groupId>
270 <artifactId>spring-beans</artifactId>
271 </exclusion>
272 <exclusion>
273 <groupId>org.springframework</groupId>
274 <artifactId>spring-context</artifactId>
275 </exclusion>
276 <exclusion>
277 <groupId>org.springframework</groupId>
278 <artifactId>spring-aop</artifactId>
279 </exclusion>
280 </exclusions>
281 </dependency>
282
283 <!-- JSON -->
284 <dependency>
285 <groupId>org.glassfish.jersey.media</groupId>
286 <artifactId>jersey-media-json-jackson</artifactId>
287 <version>${jersey.version}</version>
margaretha03a270f2023-08-21 13:59:03 +0200288 <!--<exclusions>
margaretha6a925fe2023-05-15 16:50:32 +0200289 <exclusion>
290 <groupId>com.fasterxml.jackson.core</groupId>
291 <artifactId>jackson-annotations</artifactId>
292 </exclusion>
293 <exclusion>
294 <groupId>com.fasterxml.jackson.core</groupId>
295 <artifactId>jackson-databind</artifactId>
296 </exclusion>
margaretha03a270f2023-08-21 13:59:03 +0200297 </exclusions>-->
margaretha6a925fe2023-05-15 16:50:32 +0200298 </dependency>
299 <dependency>
300 <groupId>net.minidev</groupId>
301 <artifactId>json-smart</artifactId>
dependabot[bot]60d16bc2023-07-10 17:39:03 +0000302 <version>2.5.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200303 </dependency>
304
margaretha6a925fe2023-05-15 16:50:32 +0200305 <!-- Flyway -->
306 <dependency>
307 <groupId>org.flywaydb</groupId>
308 <artifactId>flyway-core</artifactId>
309 <version>${flyway.version}</version>
310 </dependency>
311
312 <!-- Logging -->
313 <dependency>
314 <groupId>org.apache.logging.log4j</groupId>
315 <artifactId>log4j-api</artifactId>
316 <version>${log4j.version}</version>
317 </dependency>
318 <dependency>
319 <groupId>org.apache.logging.log4j</groupId>
320 <artifactId>log4j-core</artifactId>
321 <version>${log4j.version}</version>
322 <exclusions>
323 <exclusion>
324 <groupId>org.apache.logging.log4j</groupId>
325 <artifactId>log4j-api</artifactId>
326 </exclusion>
327 </exclusions>
328 </dependency>
329 <dependency>
330 <groupId>org.apache.logging.log4j</groupId>
331 <artifactId>log4j-slf4j2-impl</artifactId>
332 <version>${log4j.version}</version>
333 </dependency>
334 <dependency>
335 <groupId>org.apache.logging.log4j</groupId>
336 <artifactId>log4j-jul</artifactId>
337 <version>${log4j.version}</version>
338 <exclusions>
339 <exclusion>
340 <groupId>org.apache.logging.log4j</groupId>
341 <artifactId>log4j-api</artifactId>
342 </exclusion>
343 </exclusions>
344 </dependency>
345 <dependency>
346 <groupId>org.slf4j</groupId>
347 <artifactId>slf4j-api</artifactId>
dependabot[bot]bdd9dc72023-09-04 17:18:11 +0000348 <version>2.0.9</version>
margaretha6a925fe2023-05-15 16:50:32 +0200349 </dependency>
350
351 <!-- Java Assist -->
352 <dependency>
353 <groupId>org.javassist</groupId>
354 <artifactId>javassist</artifactId>
355 <version>3.29.2-GA</version>
356 </dependency>
357
358 <!-- EM:done -->
359
360 <dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200361 <groupId>joda-time</groupId>
362 <artifactId>joda-time</artifactId>
363 <version>2.12.5</version>
364 </dependency>
365 <dependency>
366 <groupId>de.ids_mannheim.korap</groupId>
367 <artifactId>Koral</artifactId>
368 <version>${koral.version}</version>
369 <exclusions>
370 <exclusion>
371 <groupId>org.sonatype.sisu</groupId>
372 <artifactId>sisu-guava</artifactId>
373 </exclusion>
374 <exclusion>
375 <groupId>org.eclipse.jetty</groupId>
376 <artifactId>jetty-servlet</artifactId>
377 </exclusion>
378 <exclusion>
379 <groupId>org.apache.logging.log4j</groupId>
380 <artifactId>log4j-api</artifactId>
381 </exclusion>
382 <exclusion>
383 <groupId>org.apache.logging.log4j</groupId>
384 <artifactId>log4j-core</artifactId>
385 </exclusion>
386 <exclusion>
387 <groupId>org.apache.logging.log4j</groupId>
388 <artifactId>log4j-slf4j-impl</artifactId>
389 </exclusion>
390 <exclusion>
391 <groupId>org.apache.logging.log4j</groupId>
392 <artifactId>log4j-jul</artifactId>
393 </exclusion>
394 </exclusions>
395 </dependency>
396
397 <dependency>
398 <groupId>org.xerial</groupId>
399 <artifactId>sqlite-jdbc</artifactId>
dependabot[bot]482f2502023-05-22 17:56:53 +0000400 <version>3.42.0.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200401 </dependency>
402
403 <dependency>
404 <groupId>org.apache.commons</groupId>
405 <artifactId>commons-dbcp2</artifactId>
406 <version>2.9.0</version>
margaretha2c508602023-08-21 22:29:33 +0200407 <exclusions>
408 <exclusion>
409 <groupId>commons-logging</groupId>
410 <artifactId>commons-logging</artifactId>
411 </exclusion>
412 </exclusions>
margaretha6a925fe2023-05-15 16:50:32 +0200413 </dependency>
414
415 <dependency>
416 <groupId>commons-validator</groupId>
417 <artifactId>commons-validator</artifactId>
418 <version>1.7</version>
margaretha2c508602023-08-21 22:29:33 +0200419 <exclusions>
420 <exclusion>
421 <groupId>commons-logging</groupId>
422 <artifactId>commons-logging</artifactId>
423 </exclusion>
424 </exclusions>
margaretha6a925fe2023-05-15 16:50:32 +0200425 </dependency>
426
427 <dependency>
428 <groupId>org.mindrot</groupId>
429 <artifactId>jbcrypt</artifactId>
430 <version>0.4</version>
431 </dependency>
432
margaretha4b883ec2023-09-25 12:21:24 +0200433 <!--<dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200434 <groupId>javax.annotation</groupId>
435 <artifactId>javax.annotation-api</artifactId>
436 <version>1.3.2</version>
margaretha4b883ec2023-09-25 12:21:24 +0200437 </dependency>-->
margaretha6a925fe2023-05-15 16:50:32 +0200438
439 <dependency>
440 <groupId>de.ids_mannheim.korap</groupId>
441 <artifactId>Krill</artifactId>
442 <version>${krill.version}</version>
443 <exclusions>
444 <exclusion>
margaretha03a270f2023-08-21 13:59:03 +0200445 <groupId>com.fasterxml.jackson.jaxrs</groupId>
446 <artifactId>jackson-jaxrs-json-provider</artifactId>
447 </exclusion>
448 <exclusion>
margaretha6a925fe2023-05-15 16:50:32 +0200449 <groupId>org.glassfish.jersey.containers</groupId>
450 <artifactId>jersey-container-grizzly2-http</artifactId>
451 </exclusion>
452 <exclusion>
453 <groupId>org.xerial</groupId>
454 <artifactId>sqlite-jdbc</artifactId>
455 </exclusion>
456 <exclusion>
457 <groupId>org.apache.logging.log4j</groupId>
458 <artifactId>log4j-api</artifactId>
459 </exclusion>
460 <exclusion>
461 <groupId>org.apache.logging.log4j</groupId>
462 <artifactId>log4j-core</artifactId>
463 </exclusion>
464 <exclusion>
465 <groupId>org.apache.logging.log4j</groupId>
466 <artifactId>log4j-slf4j-impl</artifactId>
467 </exclusion>
468 <exclusion>
469 <groupId>org.slf4j</groupId>
470 <artifactId>jul-to-slf4j</artifactId>
471 </exclusion>
472 </exclusions>
473 </dependency>
474 <dependency>
475 <groupId>org.reflections</groupId>
476 <artifactId>reflections</artifactId>
477 <version>0.10.2</version>
478 </dependency>
479
480 <!-- Spring -->
481 <dependency>
482 <groupId>org.springframework</groupId>
483 <artifactId>spring-core</artifactId>
484 <version>${spring.version}</version>
485 </dependency>
486 <dependency>
487 <groupId>org.springframework</groupId>
488 <artifactId>spring-web</artifactId>
489 <version>${spring.version}</version>
490 </dependency>
491 <dependency>
492 <groupId>org.springframework</groupId>
493 <artifactId>spring-orm</artifactId>
494 <version>${spring.version}</version>
495 </dependency>
496
497 <dependency>
498 <groupId>org.springframework</groupId>
499 <artifactId>spring-jdbc</artifactId>
500 <version>${spring.version}</version>
501 </dependency>
502 <dependency>
503 <groupId>org.springframework</groupId>
504 <artifactId>spring-tx</artifactId>
505 <version>${spring.version}</version>
506 </dependency>
507 <!-- <dependency>
508 <groupId>org.springframework.security</groupId>
509 <artifactId>spring-security-core</artifactId>
510 <version>${spring.version}</version>
511 </dependency>
512 <dependency>
513 <groupId>org.springframework.security</groupId>
514 <artifactId>spring-security-web</artifactId>
515 <version>${spring.version}</version>
516 </dependency> -->
517 <!-- EM: done -->
518 <dependency>
519 <groupId>org.springframework</groupId>
520 <artifactId>spring-context</artifactId>
521 <version>${spring.version}</version>
522 </dependency>
523 <dependency>
524 <groupId>org.springframework</groupId>
525 <artifactId>spring-context-support</artifactId>
526 <version>${spring.version}</version>
527 </dependency>
528 <dependency>
529 <groupId>org.springframework</groupId>
530 <artifactId>spring-test</artifactId>
531 <version>${spring.version}</version>
532 <scope>compile</scope>
533 </dependency>
534
535 <!-- apparently this order prevents the spring schemas from being overriden
536 in META-INF/spring.schemas, thus must stay like this -->
537 <dependency>
538 <groupId>org.springframework</groupId>
539 <artifactId>spring-aop</artifactId>
540 <version>${spring.version}</version>
541 </dependency>
542 <dependency>
543 <groupId>org.springframework</groupId>
544 <artifactId>spring-aspects</artifactId>
545 <version>${spring.version}</version>
546 </dependency>
547
548 <!-- end copy -->
549
550 <dependency>
551 <groupId>commons-collections</groupId>
552 <artifactId>commons-collections</artifactId>
553 <version>3.2.2</version>
554 </dependency>
555
556 <!-- jetty -->
557 <dependency>
558 <groupId>org.eclipse.jetty</groupId>
559 <artifactId>jetty-server</artifactId>
560 <version>${jetty.version}</version>
561 </dependency>
562 <dependency>
563 <groupId>org.eclipse.jetty</groupId>
564 <artifactId>jetty-servlet</artifactId>
565 <version>${jetty.version}</version>
566 </dependency>
567 <dependency>
568 <groupId>org.eclipse.jetty</groupId>
569 <artifactId>jetty-webapp</artifactId>
570 <version>${jetty.version}</version>
571 </dependency>
572
573 <dependency>
574 <groupId>asm</groupId>
575 <artifactId>asm</artifactId>
576 <version>3.3.1</version>
577 </dependency>
578
579 <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId>
580 <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions>
581 <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId>
582 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId>
583 </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId>
584 <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion>
585 <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId>
586 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId>
587 </exclusion> </exclusions> </dependency> -->
588 <dependency>
589 <groupId>org.apache.httpcomponents</groupId>
590 <artifactId>httpclient</artifactId>
591 <version>4.5.14</version>
margaretha2c508602023-08-21 22:29:33 +0200592 <exclusions>
593 <exclusion>
594 <groupId>commons-logging</groupId>
595 <artifactId>commons-logging</artifactId>
596 </exclusion>
597 </exclusions>
margaretha6a925fe2023-05-15 16:50:32 +0200598 </dependency>
599 <dependency>
600 <groupId>commons-io</groupId>
601 <artifactId>commons-io</artifactId>
dependabot[bot]09c9e2a2023-10-26 17:08:38 +0000602 <version>2.15.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200603 </dependency>
604
605 <!-- Hibernate -->
606 <dependency>
margaretha490a59b2023-08-21 10:44:16 +0200607 <groupId>org.hibernate.orm</groupId>
608 <artifactId>hibernate-core</artifactId>
margaretha6a925fe2023-05-15 16:50:32 +0200609 <version>${hibernate.version}</version>
610 </dependency>
611 <dependency>
margaretha490a59b2023-08-21 10:44:16 +0200612 <groupId>org.hibernate.orm</groupId>
margaretha6a925fe2023-05-15 16:50:32 +0200613 <artifactId>hibernate-jpamodelgen</artifactId>
614 <version>${hibernate.version}</version>
margaretha6a925fe2023-05-15 16:50:32 +0200615 </dependency>
616 <dependency>
margaretha490a59b2023-08-21 10:44:16 +0200617 <groupId>org.hibernate.orm</groupId>
618 <artifactId>hibernate-ehcache</artifactId>
619 <version>${hibernate.ehcache.version}</version>
margarethaaba5e502023-09-21 11:47:27 +0200620 <exclusions>
621 <exclusion>
margaretha490a59b2023-08-21 10:44:16 +0200622 <groupId>org.hibernate</groupId>
623 <artifactId>hibernate-core</artifactId>
margarethaaba5e502023-09-21 11:47:27 +0200624 </exclusion>
625 </exclusions>
626 </dependency>
627 <dependency>
margaretha490a59b2023-08-21 10:44:16 +0200628 <groupId>org.hibernate.orm</groupId>
margarethaaba5e502023-09-21 11:47:27 +0200629 <artifactId>hibernate-c3p0</artifactId>
630 <version>${hibernate.version}</version>
631 </dependency>
632
margaretha490a59b2023-08-21 10:44:16 +0200633 <dependency>
634 <groupId>org.hibernate.orm</groupId>
635 <artifactId>hibernate-community-dialects</artifactId>
636 <version>${hibernate.version}</version>
margaretha6a925fe2023-05-15 16:50:32 +0200637 </dependency>
638
margarethaaba5e502023-09-21 11:47:27 +0200639 <!-- servlet -->
margaretha6a925fe2023-05-15 16:50:32 +0200640 <dependency>
margaretha238df8f2023-08-16 12:38:12 +0200641 <groupId>jakarta.persistence</groupId>
642 <artifactId>jakarta.persistence-api</artifactId>
643 <version>3.1.0</version>
644 </dependency>
645
margarethaf558f7f2023-08-16 10:52:14 +0200646 <!-- servlet -->
margaretha6a925fe2023-05-15 16:50:32 +0200647 <dependency>
margaretha96c309d2023-08-16 12:24:12 +0200648 <groupId>jakarta.servlet</groupId>
649 <artifactId>jakarta.servlet-api</artifactId>
650 <version>6.0.0</version>
651 <scope>provided</scope>
652 </dependency>
653
margaretha238df8f2023-08-16 12:38:12 +0200654 <!-- needed by apache Oltu -->
margaretha96c309d2023-08-16 12:24:12 +0200655 <dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200656 <groupId>javax.servlet</groupId>
657 <artifactId>javax.servlet-api</artifactId>
658 <version>4.0.1</version>
659 </dependency>
margarethaaba5e502023-09-21 11:47:27 +0200660
margaretha6a925fe2023-05-15 16:50:32 +0200661 <dependency>
662 <groupId>org.apache.commons</groupId>
663 <artifactId>commons-text</artifactId>
dependabot[bot]2edf6792023-10-30 17:29:35 +0000664 <version>1.11.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200665 </dependency>
666 <!--<dependency>
margarethaf68daa62017-09-21 02:11:24 +0200667 <groupId>de.ids_mannheim.korap</groupId>
668 <artifactId>Kustvakt-core</artifactId>
margaretha4bae6a02023-03-13 09:50:33 +0100669 <version>${project.version}</version>
margaretha0ddaed62021-01-21 17:10:33 +0100670 </dependency>
671 <dependency>
672 <groupId>de.ids_mannheim.korap</groupId>
673 <artifactId>Kustvakt-core</artifactId>
margaretha4bae6a02023-03-13 09:50:33 +0100674 <version>${project.version}</version>
margaretha0ddaed62021-01-21 17:10:33 +0100675 <classifier>tests</classifier>
676 <type>test-jar</type>
677 <scope>test</scope>
margaretha6a925fe2023-05-15 16:50:32 +0200678 </dependency>-->
margarethaaba5e502023-09-21 11:47:27 +0200679
margaretha54134902017-09-27 18:43:11 +0200680 <!-- LDAP -->
681 <dependency>
682 <groupId>com.novell.ldap</groupId>
683 <artifactId>jldap</artifactId>
684 <version>4.3</version>
685 </dependency>
margaretha54134902017-09-27 18:43:11 +0200686 <dependency>
687 <groupId>com.unboundid</groupId>
688 <artifactId>unboundid-ldapsdk</artifactId>
dependabot[bot]2e6b0d92023-09-21 17:24:45 +0000689 <version>6.0.10</version>
margaretha54134902017-09-27 18:43:11 +0200690 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200691
margaretha34954472018-10-24 20:05:17 +0200692
margaretha318fec32017-10-24 12:11:58 +0200693 <!-- MySql -->
694 <dependency>
695 <groupId>mysql</groupId>
696 <artifactId>mysql-connector-java</artifactId>
dependabot[bot]c60ca472022-07-25 17:02:41 +0000697 <version>8.0.30</version>
margaretha318fec32017-10-24 12:11:58 +0200698 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200699
700 <!-- Jersey -->
701 <dependency>
abcpro10c746892022-11-03 22:47:04 +0000702 <groupId>org.glassfish.jersey.test-framework</groupId>
margarethaf68daa62017-09-21 02:11:24 +0200703 <artifactId>jersey-test-framework-core</artifactId>
704 <version>${jersey.version}</version>
705 <scope>test</scope>
706 </dependency>
707 <dependency>
abcpro10c746892022-11-03 22:47:04 +0000708 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
709 <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
margarethaf68daa62017-09-21 02:11:24 +0200710 <version>${jersey.version}</version>
711 <scope>test</scope>
712 </dependency>
margaretha34954472018-10-24 20:05:17 +0200713
margaretha58e18632018-02-15 13:04:42 +0100714 <!-- velocity -->
715 <dependency>
716 <groupId>org.apache.velocity</groupId>
717 <artifactId>velocity-engine-core</artifactId>
dependabot[bot]2d36f792021-03-08 05:46:34 +0000718 <version>2.3</version>
margaretha58e18632018-02-15 13:04:42 +0100719 </dependency>
720 <dependency>
margaretha327d3ad2021-03-15 16:19:35 +0100721 <groupId>org.apache.velocity.tools</groupId>
722 <artifactId>velocity-tools-generic</artifactId>
723 <version>3.1</version>
margaretha2c508602023-08-21 22:29:33 +0200724 <exclusions>
725 <exclusion>
726 <groupId>commons-logging</groupId>
727 <artifactId>commons-logging</artifactId>
728 </exclusion>
729 </exclusions>
margaretha58e18632018-02-15 13:04:42 +0100730 </dependency>
margaretha238df8f2023-08-16 12:38:12 +0200731
732 <!-- Mail -->
margaretha58e18632018-02-15 13:04:42 +0100733 <dependency>
margaretha238df8f2023-08-16 12:38:12 +0200734 <groupId>com.sun.mail</groupId>
735 <artifactId>jakarta.mail</artifactId>
736 <version>2.0.1</version>
margaretha58e18632018-02-15 13:04:42 +0100737 </dependency>
margaretha238df8f2023-08-16 12:38:12 +0200738
margaretha58e18632018-02-15 13:04:42 +0100739 <dependency>
margaretha490a59b2023-08-21 10:44:16 +0200740 <groupId>jakarta.activation</groupId>
741 <artifactId>jakarta.activation-api</artifactId>
742 <version>2.1.2</version>
743 </dependency>
744
margaretha58e18632018-02-15 13:04:42 +0100745 <dependency>
746 <groupId>javax.activation</groupId>
747 <artifactId>activation</artifactId>
748 <version>1.1.1</version>
749 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200750
margarethafb027f92018-04-23 20:00:13 +0200751 <!-- OAuth -->
752 <dependency>
753 <groupId>org.apache.oltu.oauth2</groupId>
754 <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
margarethae4034a82018-07-02 14:46:59 +0200755 <version>1.0.2</version>
margarethafb027f92018-04-23 20:00:13 +0200756 </dependency>
margarethae4034a82018-07-02 14:46:59 +0200757 <dependency>
758 <groupId>org.apache.oltu.oauth2</groupId>
759 <artifactId>org.apache.oltu.oauth2.client</artifactId>
760 <version>1.0.2</version>
761 </dependency>
margaretha9c78e1a2018-06-27 14:12:35 +0200762
margaretha6672fe52023-09-28 09:24:25 +0200763 <!-- Nimbus -->
margarethaec247dd2018-06-12 21:55:46 +0200764 <dependency>
margaretha9c78e1a2018-06-27 14:12:35 +0200765 <groupId>com.nimbusds</groupId>
766 <artifactId>oauth2-oidc-sdk</artifactId>
dependabot[bot]5a172a92023-08-04 17:04:35 +0000767 <version>10.13.2</version>
margarethaec247dd2018-06-12 21:55:46 +0200768 </dependency>
Marc Kupietzceea30c2020-05-15 16:00:03 +0200769
770 <!-- Project Lombok -->
771 <dependency>
772 <groupId>org.projectlombok</groupId>
773 <artifactId>lombok</artifactId>
dependabot[bot]5365e892023-09-21 09:50:01 +0000774 <version>1.18.30</version>
Marc Kupietzceea30c2020-05-15 16:00:03 +0200775 </dependency>
margaretha0ddaed62021-01-21 17:10:33 +0100776
777 <!-- Mockserver -->
778 <dependency>
779 <groupId>org.mock-server</groupId>
780 <artifactId>mockserver-netty</artifactId>
dependabot[bot]19fcf082023-01-12 17:01:24 +0000781 <version>5.15.0</version>
margaretha0ddaed62021-01-21 17:10:33 +0100782 <scope>test</scope>
783 </dependency>
Marc Kupietzd43a98d2023-09-22 17:11:46 +0200784 <dependency>
785 <groupId>org.junit.jupiter</groupId>
786 <artifactId>junit-jupiter</artifactId>
dependabot[bot]a8042c52023-11-06 17:19:47 +0000787 <version>5.10.1</version>
Marc Kupietzd43a98d2023-09-22 17:11:46 +0200788 <scope>test</scope>
789 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200790 </dependencies>
Akron63656052018-11-07 12:20:13 +0100791</project>