blob: c58e24bb803af01a733a2a3bff7411a7c773c7d7 [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>
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]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>
margaretha2c508602023-08-21 22:29:33 +0200432 <exclusions>
433 <exclusion>
434 <groupId>commons-logging</groupId>
435 <artifactId>commons-logging</artifactId>
436 </exclusion>
437 </exclusions>
margaretha6a925fe2023-05-15 16:50:32 +0200438 </dependency>
439
440 <dependency>
441 <groupId>commons-validator</groupId>
442 <artifactId>commons-validator</artifactId>
443 <version>1.7</version>
margaretha2c508602023-08-21 22:29:33 +0200444 <exclusions>
445 <exclusion>
446 <groupId>commons-logging</groupId>
447 <artifactId>commons-logging</artifactId>
448 </exclusion>
449 </exclusions>
margaretha6a925fe2023-05-15 16:50:32 +0200450 </dependency>
451
452 <dependency>
453 <groupId>org.mindrot</groupId>
454 <artifactId>jbcrypt</artifactId>
455 <version>0.4</version>
456 </dependency>
457
margaretha4b883ec2023-09-25 12:21:24 +0200458 <!--<dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200459 <groupId>javax.annotation</groupId>
460 <artifactId>javax.annotation-api</artifactId>
461 <version>1.3.2</version>
margaretha4b883ec2023-09-25 12:21:24 +0200462 </dependency>-->
margaretha6a925fe2023-05-15 16:50:32 +0200463
464 <dependency>
465 <groupId>de.ids_mannheim.korap</groupId>
466 <artifactId>Krill</artifactId>
467 <version>${krill.version}</version>
468 <exclusions>
469 <exclusion>
margaretha03a270f2023-08-21 13:59:03 +0200470 <groupId>com.fasterxml.jackson.jaxrs</groupId>
471 <artifactId>jackson-jaxrs-json-provider</artifactId>
472 </exclusion>
473 <exclusion>
margaretha6a925fe2023-05-15 16:50:32 +0200474 <groupId>org.glassfish.jersey.containers</groupId>
475 <artifactId>jersey-container-grizzly2-http</artifactId>
476 </exclusion>
477 <exclusion>
478 <groupId>org.xerial</groupId>
479 <artifactId>sqlite-jdbc</artifactId>
480 </exclusion>
481 <exclusion>
482 <groupId>org.apache.logging.log4j</groupId>
483 <artifactId>log4j-api</artifactId>
484 </exclusion>
485 <exclusion>
486 <groupId>org.apache.logging.log4j</groupId>
487 <artifactId>log4j-core</artifactId>
488 </exclusion>
489 <exclusion>
490 <groupId>org.apache.logging.log4j</groupId>
491 <artifactId>log4j-slf4j-impl</artifactId>
492 </exclusion>
493 <exclusion>
494 <groupId>org.slf4j</groupId>
495 <artifactId>jul-to-slf4j</artifactId>
496 </exclusion>
497 </exclusions>
498 </dependency>
499 <dependency>
500 <groupId>org.reflections</groupId>
501 <artifactId>reflections</artifactId>
502 <version>0.10.2</version>
503 </dependency>
504
505 <!-- Spring -->
506 <dependency>
507 <groupId>org.springframework</groupId>
508 <artifactId>spring-core</artifactId>
509 <version>${spring.version}</version>
510 </dependency>
511 <dependency>
512 <groupId>org.springframework</groupId>
513 <artifactId>spring-web</artifactId>
514 <version>${spring.version}</version>
515 </dependency>
516 <dependency>
517 <groupId>org.springframework</groupId>
518 <artifactId>spring-orm</artifactId>
519 <version>${spring.version}</version>
520 </dependency>
521
522 <dependency>
523 <groupId>org.springframework</groupId>
524 <artifactId>spring-jdbc</artifactId>
525 <version>${spring.version}</version>
526 </dependency>
527 <dependency>
528 <groupId>org.springframework</groupId>
529 <artifactId>spring-tx</artifactId>
530 <version>${spring.version}</version>
531 </dependency>
532 <!-- <dependency>
533 <groupId>org.springframework.security</groupId>
534 <artifactId>spring-security-core</artifactId>
535 <version>${spring.version}</version>
536 </dependency>
537 <dependency>
538 <groupId>org.springframework.security</groupId>
539 <artifactId>spring-security-web</artifactId>
540 <version>${spring.version}</version>
541 </dependency> -->
542 <!-- EM: done -->
543 <dependency>
544 <groupId>org.springframework</groupId>
545 <artifactId>spring-context</artifactId>
546 <version>${spring.version}</version>
547 </dependency>
548 <dependency>
549 <groupId>org.springframework</groupId>
550 <artifactId>spring-context-support</artifactId>
551 <version>${spring.version}</version>
552 </dependency>
553 <dependency>
554 <groupId>org.springframework</groupId>
555 <artifactId>spring-test</artifactId>
556 <version>${spring.version}</version>
557 <scope>compile</scope>
558 </dependency>
559
560 <!-- apparently this order prevents the spring schemas from being overriden
561 in META-INF/spring.schemas, thus must stay like this -->
562 <dependency>
563 <groupId>org.springframework</groupId>
564 <artifactId>spring-aop</artifactId>
565 <version>${spring.version}</version>
566 </dependency>
567 <dependency>
568 <groupId>org.springframework</groupId>
569 <artifactId>spring-aspects</artifactId>
570 <version>${spring.version}</version>
571 </dependency>
572
573 <!-- end copy -->
574
575 <dependency>
576 <groupId>commons-collections</groupId>
577 <artifactId>commons-collections</artifactId>
578 <version>3.2.2</version>
579 </dependency>
580
581 <!-- jetty -->
582 <dependency>
583 <groupId>org.eclipse.jetty</groupId>
584 <artifactId>jetty-server</artifactId>
585 <version>${jetty.version}</version>
586 </dependency>
587 <dependency>
588 <groupId>org.eclipse.jetty</groupId>
589 <artifactId>jetty-servlet</artifactId>
590 <version>${jetty.version}</version>
591 </dependency>
592 <dependency>
593 <groupId>org.eclipse.jetty</groupId>
594 <artifactId>jetty-webapp</artifactId>
595 <version>${jetty.version}</version>
596 </dependency>
597
598 <dependency>
599 <groupId>asm</groupId>
600 <artifactId>asm</artifactId>
601 <version>3.3.1</version>
602 </dependency>
603
604 <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId>
605 <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions>
606 <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId>
607 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId>
608 </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId>
609 <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion>
610 <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId>
611 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId>
612 </exclusion> </exclusions> </dependency> -->
613 <dependency>
614 <groupId>org.apache.httpcomponents</groupId>
615 <artifactId>httpclient</artifactId>
616 <version>4.5.14</version>
margaretha2c508602023-08-21 22:29:33 +0200617 <exclusions>
618 <exclusion>
619 <groupId>commons-logging</groupId>
620 <artifactId>commons-logging</artifactId>
621 </exclusion>
622 </exclusions>
margaretha6a925fe2023-05-15 16:50:32 +0200623 </dependency>
624 <dependency>
625 <groupId>commons-io</groupId>
626 <artifactId>commons-io</artifactId>
dependabot[bot]79c1e342023-06-08 17:56:39 +0000627 <version>2.13.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200628 </dependency>
629
630 <!-- Hibernate -->
631 <dependency>
margaretha490a59b2023-08-21 10:44:16 +0200632 <groupId>org.hibernate.orm</groupId>
633 <artifactId>hibernate-core</artifactId>
margaretha6a925fe2023-05-15 16:50:32 +0200634 <version>${hibernate.version}</version>
635 </dependency>
636 <dependency>
margaretha490a59b2023-08-21 10:44:16 +0200637 <groupId>org.hibernate.orm</groupId>
margaretha6a925fe2023-05-15 16:50:32 +0200638 <artifactId>hibernate-jpamodelgen</artifactId>
639 <version>${hibernate.version}</version>
margaretha6a925fe2023-05-15 16:50:32 +0200640 </dependency>
641 <dependency>
margaretha490a59b2023-08-21 10:44:16 +0200642 <groupId>org.hibernate.orm</groupId>
643 <artifactId>hibernate-ehcache</artifactId>
644 <version>${hibernate.ehcache.version}</version>
margarethaf558f7f2023-08-16 10:52:14 +0200645 <exclusions>
646 <exclusion>
margaretha490a59b2023-08-21 10:44:16 +0200647 <groupId>org.hibernate</groupId>
648 <artifactId>hibernate-core</artifactId>
margarethaf558f7f2023-08-16 10:52:14 +0200649 </exclusion>
650 </exclusions>
651 </dependency>
652 <dependency>
margaretha490a59b2023-08-21 10:44:16 +0200653 <groupId>org.hibernate.orm</groupId>
margarethaf558f7f2023-08-16 10:52:14 +0200654 <artifactId>hibernate-c3p0</artifactId>
655 <version>${hibernate.version}</version>
656 </dependency>
657
658 <!-- Sqlite -->
margaretha490a59b2023-08-21 10:44:16 +0200659 <!--<dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200660 <groupId>com.github.gwenn</groupId>
661 <artifactId>sqlite-dialect</artifactId>
662 <version>0.1.0</version>
margaretha490a59b2023-08-21 10:44:16 +0200663 </dependency>-->
664 <dependency>
665 <groupId>org.hibernate.orm</groupId>
666 <artifactId>hibernate-community-dialects</artifactId>
667 <version>${hibernate.version}</version>
margaretha6a925fe2023-05-15 16:50:32 +0200668 </dependency>
669
margaretha238df8f2023-08-16 12:38:12 +0200670 <dependency>
671 <groupId>jakarta.persistence</groupId>
672 <artifactId>jakarta.persistence-api</artifactId>
673 <version>3.1.0</version>
674 </dependency>
675
margarethaf558f7f2023-08-16 10:52:14 +0200676 <!-- servlet -->
margaretha6a925fe2023-05-15 16:50:32 +0200677 <dependency>
margaretha96c309d2023-08-16 12:24:12 +0200678 <groupId>jakarta.servlet</groupId>
679 <artifactId>jakarta.servlet-api</artifactId>
680 <version>6.0.0</version>
681 <scope>provided</scope>
682 </dependency>
683
margaretha238df8f2023-08-16 12:38:12 +0200684 <!-- needed by apache Oltu -->
margaretha96c309d2023-08-16 12:24:12 +0200685 <dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200686 <groupId>javax.servlet</groupId>
687 <artifactId>javax.servlet-api</artifactId>
688 <version>4.0.1</version>
689 </dependency>
margarethaf558f7f2023-08-16 10:52:14 +0200690
margaretha6a925fe2023-05-15 16:50:32 +0200691 <dependency>
692 <groupId>org.apache.commons</groupId>
693 <artifactId>commons-text</artifactId>
694 <version>1.10.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200695 </dependency>
696 <!--<dependency>
margarethaf68daa62017-09-21 02:11:24 +0200697 <groupId>de.ids_mannheim.korap</groupId>
698 <artifactId>Kustvakt-core</artifactId>
margaretha4bae6a02023-03-13 09:50:33 +0100699 <version>${project.version}</version>
margaretha0ddaed62021-01-21 17:10:33 +0100700 </dependency>
701 <dependency>
702 <groupId>de.ids_mannheim.korap</groupId>
703 <artifactId>Kustvakt-core</artifactId>
margaretha4bae6a02023-03-13 09:50:33 +0100704 <version>${project.version}</version>
margaretha0ddaed62021-01-21 17:10:33 +0100705 <classifier>tests</classifier>
706 <type>test-jar</type>
707 <scope>test</scope>
margaretha6a925fe2023-05-15 16:50:32 +0200708 </dependency>-->
margarethaf558f7f2023-08-16 10:52:14 +0200709
margaretha54134902017-09-27 18:43:11 +0200710 <!-- LDAP -->
711 <dependency>
712 <groupId>com.novell.ldap</groupId>
713 <artifactId>jldap</artifactId>
714 <version>4.3</version>
715 </dependency>
margaretha54134902017-09-27 18:43:11 +0200716 <dependency>
717 <groupId>com.unboundid</groupId>
718 <artifactId>unboundid-ldapsdk</artifactId>
dependabot[bot]771d8fa2023-06-08 17:56:48 +0000719 <version>6.0.9</version>
margaretha54134902017-09-27 18:43:11 +0200720 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200721
margaretha34954472018-10-24 20:05:17 +0200722
margaretha318fec32017-10-24 12:11:58 +0200723 <!-- MySql -->
724 <dependency>
725 <groupId>mysql</groupId>
726 <artifactId>mysql-connector-java</artifactId>
dependabot[bot]c60ca472022-07-25 17:02:41 +0000727 <version>8.0.30</version>
margaretha318fec32017-10-24 12:11:58 +0200728 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200729
730 <!-- Jersey -->
731 <dependency>
abcpro10c746892022-11-03 22:47:04 +0000732 <groupId>org.glassfish.jersey.test-framework</groupId>
margarethaf68daa62017-09-21 02:11:24 +0200733 <artifactId>jersey-test-framework-core</artifactId>
734 <version>${jersey.version}</version>
735 <scope>test</scope>
margaretha368d2d32023-02-28 11:23:22 +0100736 <exclusions>
737 <exclusion>
738 <groupId>org.junit.jupiter</groupId>
739 <artifactId>junit-jupiter</artifactId>
740 </exclusion>
741 </exclusions>
margarethaf68daa62017-09-21 02:11:24 +0200742 </dependency>
743 <dependency>
abcpro10c746892022-11-03 22:47:04 +0000744 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
745 <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
margarethaf68daa62017-09-21 02:11:24 +0200746 <version>${jersey.version}</version>
747 <scope>test</scope>
margaretha368d2d32023-02-28 11:23:22 +0100748 <exclusions>
749 <exclusion>
750 <groupId>org.junit.jupiter</groupId>
751 <artifactId>junit-jupiter</artifactId>
752 </exclusion>
753 </exclusions>
margarethaf68daa62017-09-21 02:11:24 +0200754 </dependency>
margaretha34954472018-10-24 20:05:17 +0200755
margaretha58e18632018-02-15 13:04:42 +0100756 <!-- velocity -->
757 <dependency>
758 <groupId>org.apache.velocity</groupId>
759 <artifactId>velocity-engine-core</artifactId>
dependabot[bot]2d36f792021-03-08 05:46:34 +0000760 <version>2.3</version>
margaretha58e18632018-02-15 13:04:42 +0100761 </dependency>
762 <dependency>
margaretha327d3ad2021-03-15 16:19:35 +0100763 <groupId>org.apache.velocity.tools</groupId>
764 <artifactId>velocity-tools-generic</artifactId>
765 <version>3.1</version>
margaretha2c508602023-08-21 22:29:33 +0200766 <exclusions>
767 <exclusion>
768 <groupId>commons-logging</groupId>
769 <artifactId>commons-logging</artifactId>
770 </exclusion>
771 </exclusions>
margaretha58e18632018-02-15 13:04:42 +0100772 </dependency>
margaretha238df8f2023-08-16 12:38:12 +0200773
774 <!-- Mail -->
margaretha58e18632018-02-15 13:04:42 +0100775 <dependency>
margaretha238df8f2023-08-16 12:38:12 +0200776 <groupId>com.sun.mail</groupId>
777 <artifactId>jakarta.mail</artifactId>
778 <version>2.0.1</version>
margaretha58e18632018-02-15 13:04:42 +0100779 </dependency>
margaretha238df8f2023-08-16 12:38:12 +0200780
margaretha58e18632018-02-15 13:04:42 +0100781 <dependency>
margaretha490a59b2023-08-21 10:44:16 +0200782 <groupId>jakarta.activation</groupId>
783 <artifactId>jakarta.activation-api</artifactId>
784 <version>2.1.2</version>
785 </dependency>
786
margaretha4b883ec2023-09-25 12:21:24 +0200787 <dependency>
margaretha58e18632018-02-15 13:04:42 +0100788 <groupId>javax.activation</groupId>
789 <artifactId>activation</artifactId>
790 <version>1.1.1</version>
margaretha4b883ec2023-09-25 12:21:24 +0200791 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200792
margarethafb027f92018-04-23 20:00:13 +0200793 <!-- OAuth -->
794 <dependency>
795 <groupId>org.apache.oltu.oauth2</groupId>
796 <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
margarethae4034a82018-07-02 14:46:59 +0200797 <version>1.0.2</version>
margarethafb027f92018-04-23 20:00:13 +0200798 </dependency>
margarethae4034a82018-07-02 14:46:59 +0200799 <dependency>
800 <groupId>org.apache.oltu.oauth2</groupId>
801 <artifactId>org.apache.oltu.oauth2.client</artifactId>
802 <version>1.0.2</version>
803 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200804 <!-- JWT -->
805 <dependency>
806 <groupId>com.nimbusds</groupId>
807 <artifactId>nimbus-jose-jwt</artifactId>
dependabot[bot]92ad6942023-02-22 17:12:19 +0000808 <version>9.31</version>
margaretha235a6802018-06-06 19:21:53 +0200809 </dependency>
margaretha9c78e1a2018-06-27 14:12:35 +0200810
margarethaec247dd2018-06-12 21:55:46 +0200811 <!-- OpenId -->
812 <dependency>
margaretha9c78e1a2018-06-27 14:12:35 +0200813 <groupId>com.nimbusds</groupId>
814 <artifactId>oauth2-oidc-sdk</artifactId>
dependabot[bot]5a172a92023-08-04 17:04:35 +0000815 <version>10.13.2</version>
margarethaec247dd2018-06-12 21:55:46 +0200816 </dependency>
Marc Kupietzceea30c2020-05-15 16:00:03 +0200817
818 <!-- Project Lombok -->
819 <dependency>
820 <groupId>org.projectlombok</groupId>
821 <artifactId>lombok</artifactId>
dependabot[bot]949bef62023-05-25 17:56:39 +0000822 <version>1.18.28</version>
Marc Kupietzceea30c2020-05-15 16:00:03 +0200823 </dependency>
margaretha0ddaed62021-01-21 17:10:33 +0100824
825 <!-- Mockserver -->
826 <dependency>
827 <groupId>org.mock-server</groupId>
828 <artifactId>mockserver-netty</artifactId>
dependabot[bot]19fcf082023-01-12 17:01:24 +0000829 <version>5.15.0</version>
margaretha0ddaed62021-01-21 17:10:33 +0100830 <scope>test</scope>
831 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200832 </dependencies>
Akron63656052018-11-07 12:20:13 +0100833</project>