blob: 784adbf626702e3f712675addb83e76a6ff150d6 [file] [log] [blame]
margarethaf68daa62017-09-21 02:11:24 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>de.ids_mannheim.korap</groupId>
5 <artifactId>Kustvakt-full</artifactId>
margaretha3a616b42023-05-19 13:27:16 +02006 <version>0.71</version>
margarethaf68daa62017-09-21 02:11:24 +02007 <properties>
abcpro10c746892022-11-03 22:47:04 +00008 <java.version>11</java.version>
margarethaf68daa62017-09-21 02:11:24 +02009 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
dependabot[bot]fc0aa552023-06-23 17:56:33 +000010 <jersey.version>2.40</jersey.version>
dependabot[bot]38cd4872023-02-06 17:00:54 +000011 <hibernate.version>5.6.15.Final</hibernate.version>
dependabot[bot]57740752023-07-13 17:58:15 +000012 <spring.version>5.3.29</spring.version>
margaretha6a925fe2023-05-15 16:50:32 +020013 <jetty.version>9.4.51.v20230217</jetty.version>
dependabot[bot]019ec6f2023-07-27 17:49:15 +000014 <flyway.version>9.21.1</flyway.version>
dependabot[bot]77606532023-05-16 17:57:39 +000015 <log4j.version>2.20.0</log4j.version>
margaretha9bb5cb32023-08-15 16:41:05 +020016 <krill.version>[0.61.3,)</krill.version>
margaretha6a925fe2023-05-15 16:50:32 +020017 <koral.version>[0.39.1,)</koral.version>
margarethaf68daa62017-09-21 02:11:24 +020018 </properties>
margaretha34954472018-10-24 20:05:17 +020019 <profiles>
20 <profile>
21 <id>full</id>
22 <activation>
23 <activeByDefault>true</activeByDefault>
24 </activation>
25 <build>
26 <plugins>
27 <plugin>
28 <artifactId>maven-shade-plugin</artifactId>
dependabot[bot]3dea5c72023-06-16 17:56:55 +000029 <version>3.5.0</version>
margaretha34954472018-10-24 20:05:17 +020030 <executions>
31 <!-- option 1 -->
32 <execution>
33 <id>full</id>
34 <phase>package</phase>
35 <goals>
36 <goal>shade</goal>
37 </goals>
38 <configuration>
39 <finalName>Kustvakt-full-${project.version}</finalName>
40 <transformers>
41 <transformer
42 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
43 <mainClass>
44 de.ids_mannheim.korap.server.KustvaktServer
45 </mainClass>
46 </transformer>
47 <transformer
48 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
49 <resource>META-INF/spring.handlers
50 </resource>
51 </transformer>
52 <transformer
53 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
54 <resource>META-INF/spring.schemas
55 </resource>
56 </transformer>
57 </transformers>
margaretha34954472018-10-24 20:05:17 +020058 <filters>
margaretha92ad2ec2023-05-15 14:10:00 +020059 <filter>
60 <artifact>*:*</artifact>
61 <excludes>
62 <exclude>db/lite/**</exclude>
63 </excludes>
64 </filter>
65 </filters>
margaretha34954472018-10-24 20:05:17 +020066 </configuration>
67 </execution>
68 </executions>
69 </plugin>
70 </plugins>
71 </build>
72 </profile>
margaretha92ad2ec2023-05-15 14:10:00 +020073
74
75 <profile>
76 <id>lite</id>
77 <build>
78 <plugins>
79 <plugin>
80 <artifactId>maven-shade-plugin</artifactId>
dependabot[bot]3dea5c72023-06-16 17:56:55 +000081 <version>3.5.0</version>
margaretha92ad2ec2023-05-15 14:10:00 +020082 <executions>
83 <!--option 2-->
84 <execution>
85 <id>lite</id>
86 <phase>package</phase>
87 <goals>
88 <goal>shade</goal>
89 </goals>
90 <configuration>
91 <finalName>
92 Kustvakt-lite-${project.version}
93 </finalName>
94 <transformers>
95 <transformer
96 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
97 <mainClass>
98 de.ids_mannheim.korap.server.KustvaktLiteServer
99 </mainClass>
100 </transformer>
101 <transformer
102 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
103 <resource>META-INF/spring.handlers
104 </resource>
105 </transformer>
106 <transformer
107 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
108 <resource>META-INF/spring.schemas
109 </resource>
110 </transformer>
111 </transformers>
112 <filters>
113 <filter>
114 <artifact>*:*</artifact>
115 <excludes>
116 <exclude>db/mysql/**</exclude>
117 <exclude>db/predefined/**</exclude>
118 <exclude>db/sqlite/**</exclude>
119 <exclude>db/test/**</exclude>
120 <exclude>com.novell.ldap</exclude>
121 <exclude>com.unboundid</exclude>
122 <exclude>org.glassfish.jersey.test-framework*</exclude>
123 <exclude>org.apache.velocity*</exclude>
124 <exclude>com.sun.mail</exclude>
125 <exclude>javax.activation</exclude>
126 </excludes>
127 </filter>
128 </filters>
129 </configuration>
130 </execution>
131 </executions>
132 </plugin>
133 </plugins>
134 </build>
135 </profile>
136
margaretha34954472018-10-24 20:05:17 +0200137 </profiles>
margarethaf68daa62017-09-21 02:11:24 +0200138 <build>
margaretha7e1b7752023-07-17 13:56:42 +0200139 <resources>
140 <resource>
141 <directory>src/main/resources</directory>
142 <filtering>true</filtering>
143 <!--
margaretha34954472018-10-24 20:05:17 +0200144 <includes> <include>**/*.info</include> <include>**/*.xml</include> <include>**/*.conf</include>
145 <include>**/*.kustvakt</include> <include>**/*.properties</include> <include>**/*.sql</include>
margaretha7e1b7752023-07-17 13:56:42 +0200146 <include>**/*.vm</include> </includes>
147 -->
148 </resource>
149 </resources>
margarethaf68daa62017-09-21 02:11:24 +0200150 <testResources>
151 <testResource>
152 <directory>src/test/resources</directory>
margarethaf68daa62017-09-21 02:11:24 +0200153 </testResource>
154 <testResource>
155 <directory>src/main/resources</directory>
156 <filtering>true</filtering>
157 <includes>
158 <include>**/*.info</include>
margaretha3da7cd32018-10-22 17:42:52 +0200159 <include>**/*.json</include>
Marc Kupietz0a378672022-04-30 09:35:27 +0200160 <include>**/*.ldif</include>
margarethaf68daa62017-09-21 02:11:24 +0200161 </includes>
162 </testResource>
163 </testResources>
164 <plugins>
165 <!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html -->
166 <plugin>
167 <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
168 <artifactId>maven-java-formatter-plugin</artifactId>
169 <version>0.4</version>
170 <configuration>
171 <configFile>${project.basedir}/Format.xml</configFile>
172 <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion>
173 <compilerSource>${java.version}</compilerSource>
174 <compilerCompliance>${java.version}</compilerCompliance>
175 <compilerTargetPlatform>${java.version}</compilerTargetPlatform>
176 </configuration>
177 <!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution>
178 </executions> -->
179 </plugin>
180 <plugin>
181 <groupId>org.apache.maven.plugins</groupId>
182 <artifactId>maven-compiler-plugin</artifactId>
margaretha7e1fa0f2023-03-06 16:19:09 +0100183 <version>3.11.0</version>
margarethaf68daa62017-09-21 02:11:24 +0200184 <configuration>
185 <compilerVersion>${java.version}</compilerVersion>
186 <source>${java.version}</source>
187 <target>${java.version}</target>
margaretha58e18632018-02-15 13:04:42 +0100188 <!-- <compilerArguments> <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
189 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
190 </compilerArguments> -->
Marc Kupietz483db752020-03-25 08:25:35 +0100191 <annotationProcessors>
margarethafc7d7772018-01-16 17:48:17 +0100192 <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
193 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
Marc Kupietz483db752020-03-25 08:25:35 +0100194 </annotationProcessors>
margarethaf68daa62017-09-21 02:11:24 +0200195 </configuration>
196 </plugin>
margarethaf68daa62017-09-21 02:11:24 +0200197 <plugin>
198 <groupId>org.apache.maven.plugins</groupId>
margaretha6a925fe2023-05-15 16:50:32 +0200199 <artifactId>maven-source-plugin</artifactId>
dependabot[bot]1632cdb2023-05-22 17:56:43 +0000200 <version>3.3.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200201 <executions>
202 <execution>
203 <id>attach-sources</id>
204 <goals>
205 <goal>jar</goal>
206 </goals>
207 </execution>
208 </executions>
209 </plugin>
210 <plugin>
211 <groupId>org.apache.maven.plugins</groupId>
margarethaf68daa62017-09-21 02:11:24 +0200212 <artifactId>maven-surefire-plugin</artifactId>
dependabot[bot]2b051372023-06-07 17:56:39 +0000213 <version>3.1.2</version>
dependabot[bot]95465742023-02-17 17:56:32 +0000214 <dependencies>
215 <dependency>
216 <groupId>org.apache.maven.surefire</groupId>
217 <artifactId>surefire-junit47</artifactId>
dependabot[bot]2b051372023-06-07 17:56:39 +0000218 <version>3.1.2</version>
dependabot[bot]95465742023-02-17 17:56:32 +0000219 </dependency>
220 </dependencies>
margarethaf68daa62017-09-21 02:11:24 +0200221 <configuration>
margaretha0a45be12018-07-12 15:06:30 +0200222 <reuseForks>true</reuseForks>
223 <forkCount>1</forkCount>
224 <threadCount>10</threadCount>
Marc Kupietzddd9a8b2022-11-17 17:24:58 +0100225 <argLine>-Xmx512m
margaretha49cb6882018-07-04 04:19:54 +0200226 -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine>
margarethaf68daa62017-09-21 02:11:24 +0200227 <excludes>
Marc Kupietz0a378672022-04-30 09:35:27 +0200228 <exclude>de/ids_mannheim/korap/authentication/APIAuthenticationTest.java</exclude>
229 <exclude>de/ids_mannheim/korap/authentication/AuthenticationFilterTest.java</exclude>
230 <exclude>de/ids_mannheim/korap/authentication/Kustvakt*.java</exclude>
231 <exclude>de/ids_mannheim/korap/authentication/LdapTest.java</exclude>
232 <exclude>de/ids_mannheim/korap/authentication/Random*.java</exclude>
margaretha49cb6882018-07-04 04:19:54 +0200233 <exclude>de/ids_mannheim/korap/web/controller/TokenExpiryTest.java</exclude>
margaretha7cd52d12023-03-15 16:56:06 +0100234 <exclude>de/ids_mannheim/korap/web/controller/AdminLoadVCTest.java</exclude>
margarethaf68daa62017-09-21 02:11:24 +0200235 </excludes>
236 <includes>
237 <include>de/ids_mannheim/korap/**/*.java</include>
Marc Kupietz0a378672022-04-30 09:35:27 +0200238 <include>de/ids_mannheim/korap/authentication/LdapAuth3Test.java</include>
margarethaf68daa62017-09-21 02:11:24 +0200239 </includes>
240 </configuration>
241 </plugin>
margarethaf68daa62017-09-21 02:11:24 +0200242 </plugins>
243 </build>
244
245 <dependencies>
margaretha6a925fe2023-05-15 16:50:32 +0200246 <!-- backport -->
margarethaf68daa62017-09-21 02:11:24 +0200247 <dependency>
margaretha6a925fe2023-05-15 16:50:32 +0200248 <groupId>backport-util-concurrent</groupId>
249 <artifactId>backport-util-concurrent</artifactId>
250 <version>3.1</version>
251 </dependency>
252
253 <!-- Jersey -->
254 <dependency>
255 <groupId>org.glassfish.jersey.core</groupId>
256 <artifactId>jersey-server</artifactId>
257 <version>${jersey.version}</version>
258 </dependency>
259
260 <dependency>
261 <groupId>org.glassfish.jersey.ext</groupId>
262 <artifactId>jersey-spring5</artifactId>
263 <version>${jersey.version}</version>
264 <exclusions>
265 <exclusion>
266 <groupId>org.springframework</groupId>
267 <artifactId>spring-core</artifactId>
268 </exclusion>
269 <exclusion>
270 <groupId>org.springframework</groupId>
271 <artifactId>spring-web</artifactId>
272 </exclusion>
273 <exclusion>
274 <groupId>org.springframework</groupId>
275 <artifactId>spring-beans</artifactId>
276 </exclusion>
277 <exclusion>
278 <groupId>org.springframework</groupId>
279 <artifactId>spring-context</artifactId>
280 </exclusion>
281 <exclusion>
282 <groupId>org.springframework</groupId>
283 <artifactId>spring-aop</artifactId>
284 </exclusion>
285 </exclusions>
286 </dependency>
287
288 <!-- JSON -->
289 <dependency>
290 <groupId>org.glassfish.jersey.media</groupId>
291 <artifactId>jersey-media-json-jackson</artifactId>
292 <version>${jersey.version}</version>
293 <exclusions>
294 <exclusion>
295 <groupId>com.fasterxml.jackson.core</groupId>
296 <artifactId>jackson-annotations</artifactId>
297 </exclusion>
298 <exclusion>
299 <groupId>com.fasterxml.jackson.core</groupId>
300 <artifactId>jackson-databind</artifactId>
301 </exclusion>
302 </exclusions>
303 </dependency>
304 <dependency>
305 <groupId>net.minidev</groupId>
306 <artifactId>json-smart</artifactId>
dependabot[bot]60d16bc2023-07-10 17:39:03 +0000307 <version>2.5.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200308 </dependency>
309
310 <!-- Jersey 1x originally uses codehaus -->
311 <dependency>
312 <groupId>com.fasterxml.jackson.jaxrs</groupId>
313 <artifactId>jackson-jaxrs-json-provider</artifactId>
dependabot[bot]6e1188d2023-05-17 17:56:52 +0000314 <version>2.15.1</version>
margaretha6a925fe2023-05-15 16:50:32 +0200315 </dependency>
316
317 <!-- Flyway -->
318 <dependency>
319 <groupId>org.flywaydb</groupId>
320 <artifactId>flyway-core</artifactId>
321 <version>${flyway.version}</version>
322 </dependency>
323
324 <!-- Logging -->
325 <dependency>
326 <groupId>org.apache.logging.log4j</groupId>
327 <artifactId>log4j-api</artifactId>
328 <version>${log4j.version}</version>
329 </dependency>
330 <dependency>
331 <groupId>org.apache.logging.log4j</groupId>
332 <artifactId>log4j-core</artifactId>
333 <version>${log4j.version}</version>
334 <exclusions>
335 <exclusion>
336 <groupId>org.apache.logging.log4j</groupId>
337 <artifactId>log4j-api</artifactId>
338 </exclusion>
339 </exclusions>
340 </dependency>
341 <dependency>
342 <groupId>org.apache.logging.log4j</groupId>
343 <artifactId>log4j-slf4j2-impl</artifactId>
344 <version>${log4j.version}</version>
345 </dependency>
346 <dependency>
347 <groupId>org.apache.logging.log4j</groupId>
348 <artifactId>log4j-jul</artifactId>
349 <version>${log4j.version}</version>
350 <exclusions>
351 <exclusion>
352 <groupId>org.apache.logging.log4j</groupId>
353 <artifactId>log4j-api</artifactId>
354 </exclusion>
355 </exclusions>
356 </dependency>
357 <dependency>
358 <groupId>org.slf4j</groupId>
359 <artifactId>slf4j-api</artifactId>
360 <version>2.0.7</version>
361 </dependency>
362
363 <!-- Java Assist -->
364 <dependency>
365 <groupId>org.javassist</groupId>
366 <artifactId>javassist</artifactId>
367 <version>3.29.2-GA</version>
368 </dependency>
369
370 <!-- EM:done -->
371
372 <dependency>
373 <groupId>junit</groupId>
374 <artifactId>junit</artifactId>
375 <version>4.13.2</version>
376 </dependency>
377 <dependency>
378 <groupId>org.projectlombok</groupId>
379 <artifactId>lombok</artifactId>
dependabot[bot]949bef62023-05-25 17:56:39 +0000380 <version>1.18.28</version>
margaretha6a925fe2023-05-15 16:50:32 +0200381 </dependency>
382 <dependency>
383 <groupId>joda-time</groupId>
384 <artifactId>joda-time</artifactId>
385 <version>2.12.5</version>
386 </dependency>
387 <dependency>
388 <groupId>de.ids_mannheim.korap</groupId>
389 <artifactId>Koral</artifactId>
390 <version>${koral.version}</version>
391 <exclusions>
392 <exclusion>
393 <groupId>org.sonatype.sisu</groupId>
394 <artifactId>sisu-guava</artifactId>
395 </exclusion>
396 <exclusion>
397 <groupId>org.eclipse.jetty</groupId>
398 <artifactId>jetty-servlet</artifactId>
399 </exclusion>
400 <exclusion>
401 <groupId>org.apache.logging.log4j</groupId>
402 <artifactId>log4j-api</artifactId>
403 </exclusion>
404 <exclusion>
405 <groupId>org.apache.logging.log4j</groupId>
406 <artifactId>log4j-core</artifactId>
407 </exclusion>
408 <exclusion>
409 <groupId>org.apache.logging.log4j</groupId>
410 <artifactId>log4j-slf4j-impl</artifactId>
411 </exclusion>
412 <exclusion>
413 <groupId>org.apache.logging.log4j</groupId>
414 <artifactId>log4j-jul</artifactId>
415 </exclusion>
416 </exclusions>
417 </dependency>
418
419 <dependency>
420 <groupId>org.xerial</groupId>
421 <artifactId>sqlite-jdbc</artifactId>
dependabot[bot]482f2502023-05-22 17:56:53 +0000422 <version>3.42.0.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200423 </dependency>
424
425 <dependency>
426 <groupId>org.apache.commons</groupId>
427 <artifactId>commons-dbcp2</artifactId>
428 <version>2.9.0</version>
429 </dependency>
430
431 <dependency>
432 <groupId>commons-validator</groupId>
433 <artifactId>commons-validator</artifactId>
434 <version>1.7</version>
435 </dependency>
436
437 <dependency>
438 <groupId>org.mindrot</groupId>
439 <artifactId>jbcrypt</artifactId>
440 <version>0.4</version>
441 </dependency>
442
443 <dependency>
444 <groupId>javax.annotation</groupId>
445 <artifactId>javax.annotation-api</artifactId>
446 <version>1.3.2</version>
447 </dependency>
448
449 <dependency>
450 <groupId>de.ids_mannheim.korap</groupId>
451 <artifactId>Krill</artifactId>
452 <version>${krill.version}</version>
453 <exclusions>
454 <exclusion>
455 <groupId>org.glassfish.jersey.containers</groupId>
456 <artifactId>jersey-container-grizzly2-http</artifactId>
457 </exclusion>
458 <exclusion>
459 <groupId>org.xerial</groupId>
460 <artifactId>sqlite-jdbc</artifactId>
461 </exclusion>
462 <exclusion>
463 <groupId>org.apache.logging.log4j</groupId>
464 <artifactId>log4j-api</artifactId>
465 </exclusion>
466 <exclusion>
467 <groupId>org.apache.logging.log4j</groupId>
468 <artifactId>log4j-core</artifactId>
469 </exclusion>
470 <exclusion>
471 <groupId>org.apache.logging.log4j</groupId>
472 <artifactId>log4j-slf4j-impl</artifactId>
473 </exclusion>
474 <exclusion>
475 <groupId>org.slf4j</groupId>
476 <artifactId>jul-to-slf4j</artifactId>
477 </exclusion>
478 </exclusions>
479 </dependency>
480 <dependency>
481 <groupId>org.reflections</groupId>
482 <artifactId>reflections</artifactId>
483 <version>0.10.2</version>
484 </dependency>
485
486 <!-- Spring -->
487 <dependency>
488 <groupId>org.springframework</groupId>
489 <artifactId>spring-core</artifactId>
490 <version>${spring.version}</version>
491 </dependency>
492 <dependency>
493 <groupId>org.springframework</groupId>
494 <artifactId>spring-web</artifactId>
495 <version>${spring.version}</version>
496 </dependency>
497 <dependency>
498 <groupId>org.springframework</groupId>
499 <artifactId>spring-orm</artifactId>
500 <version>${spring.version}</version>
501 </dependency>
502
503 <dependency>
504 <groupId>org.springframework</groupId>
505 <artifactId>spring-jdbc</artifactId>
506 <version>${spring.version}</version>
507 </dependency>
508 <dependency>
509 <groupId>org.springframework</groupId>
510 <artifactId>spring-tx</artifactId>
511 <version>${spring.version}</version>
512 </dependency>
513 <!-- <dependency>
514 <groupId>org.springframework.security</groupId>
515 <artifactId>spring-security-core</artifactId>
516 <version>${spring.version}</version>
517 </dependency>
518 <dependency>
519 <groupId>org.springframework.security</groupId>
520 <artifactId>spring-security-web</artifactId>
521 <version>${spring.version}</version>
522 </dependency> -->
523 <!-- EM: done -->
524 <dependency>
525 <groupId>org.springframework</groupId>
526 <artifactId>spring-context</artifactId>
527 <version>${spring.version}</version>
528 </dependency>
529 <dependency>
530 <groupId>org.springframework</groupId>
531 <artifactId>spring-context-support</artifactId>
532 <version>${spring.version}</version>
533 </dependency>
534 <dependency>
535 <groupId>org.springframework</groupId>
536 <artifactId>spring-test</artifactId>
537 <version>${spring.version}</version>
538 <scope>compile</scope>
539 </dependency>
540
541 <!-- apparently this order prevents the spring schemas from being overriden
542 in META-INF/spring.schemas, thus must stay like this -->
543 <dependency>
544 <groupId>org.springframework</groupId>
545 <artifactId>spring-aop</artifactId>
546 <version>${spring.version}</version>
547 </dependency>
548 <dependency>
549 <groupId>org.springframework</groupId>
550 <artifactId>spring-aspects</artifactId>
551 <version>${spring.version}</version>
552 </dependency>
553
554 <!-- end copy -->
555
556 <dependency>
557 <groupId>commons-collections</groupId>
558 <artifactId>commons-collections</artifactId>
559 <version>3.2.2</version>
560 </dependency>
561
562 <!-- jetty -->
563 <dependency>
564 <groupId>org.eclipse.jetty</groupId>
565 <artifactId>jetty-server</artifactId>
566 <version>${jetty.version}</version>
567 </dependency>
568 <dependency>
569 <groupId>org.eclipse.jetty</groupId>
570 <artifactId>jetty-servlet</artifactId>
571 <version>${jetty.version}</version>
572 </dependency>
573 <dependency>
574 <groupId>org.eclipse.jetty</groupId>
575 <artifactId>jetty-webapp</artifactId>
576 <version>${jetty.version}</version>
577 </dependency>
578
579 <dependency>
580 <groupId>asm</groupId>
581 <artifactId>asm</artifactId>
582 <version>3.3.1</version>
583 </dependency>
584
585 <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId>
586 <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions>
587 <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId>
588 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId>
589 </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId>
590 <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion>
591 <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId>
592 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId>
593 </exclusion> </exclusions> </dependency> -->
594 <dependency>
595 <groupId>org.apache.httpcomponents</groupId>
596 <artifactId>httpclient</artifactId>
597 <version>4.5.14</version>
598 </dependency>
599 <dependency>
600 <groupId>commons-io</groupId>
601 <artifactId>commons-io</artifactId>
dependabot[bot]79c1e342023-06-08 17:56:39 +0000602 <version>2.13.0</version>
margaretha6a925fe2023-05-15 16:50:32 +0200603 </dependency>
604
605 <!-- Hibernate -->
606 <dependency>
607 <groupId>org.hibernate</groupId>
608 <artifactId>hibernate-ehcache</artifactId>
609 <version>${hibernate.version}</version>
610 </dependency>
611 <dependency>
612 <groupId>org.hibernate</groupId>
613 <artifactId>hibernate-jpamodelgen</artifactId>
614 <version>${hibernate.version}</version>
615 <scope>provided</scope>
616 </dependency>
617 <dependency>
618 <groupId>com.github.gwenn</groupId>
619 <artifactId>sqlite-dialect</artifactId>
620 <version>0.1.0</version>
621 </dependency>
622
623 <dependency>
624 <groupId>javax.servlet</groupId>
625 <artifactId>javax.servlet-api</artifactId>
626 <version>4.0.1</version>
627 </dependency>
628 <dependency>
629 <groupId>org.apache.commons</groupId>
630 <artifactId>commons-text</artifactId>
631 <version>1.10.0</version>
632 <scope>test</scope>
633 </dependency>
634 <!--<dependency>
margarethaf68daa62017-09-21 02:11:24 +0200635 <groupId>de.ids_mannheim.korap</groupId>
636 <artifactId>Kustvakt-core</artifactId>
margaretha4bae6a02023-03-13 09:50:33 +0100637 <version>${project.version}</version>
margaretha0ddaed62021-01-21 17:10:33 +0100638 </dependency>
639 <dependency>
640 <groupId>de.ids_mannheim.korap</groupId>
641 <artifactId>Kustvakt-core</artifactId>
margaretha4bae6a02023-03-13 09:50:33 +0100642 <version>${project.version}</version>
margaretha0ddaed62021-01-21 17:10:33 +0100643 <classifier>tests</classifier>
644 <type>test-jar</type>
645 <scope>test</scope>
margaretha6a925fe2023-05-15 16:50:32 +0200646 </dependency>-->
margaretha54134902017-09-27 18:43:11 +0200647 <!-- LDAP -->
648 <dependency>
649 <groupId>com.novell.ldap</groupId>
650 <artifactId>jldap</artifactId>
651 <version>4.3</version>
652 </dependency>
margaretha54134902017-09-27 18:43:11 +0200653 <dependency>
654 <groupId>com.unboundid</groupId>
655 <artifactId>unboundid-ldapsdk</artifactId>
dependabot[bot]771d8fa2023-06-08 17:56:48 +0000656 <version>6.0.9</version>
margaretha54134902017-09-27 18:43:11 +0200657 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200658
margarethaf68daa62017-09-21 02:11:24 +0200659 <!-- Hibernate -->
660 <dependency>
661 <groupId>org.hibernate</groupId>
662 <artifactId>hibernate-entitymanager</artifactId>
margaretha9025d642018-01-19 17:35:22 +0100663 <version>${hibernate.version}</version>
664 <exclusions>
665 <exclusion>
666 <groupId>org.javassist</groupId>
margaretha58e18632018-02-15 13:04:42 +0100667 <artifactId>javassist</artifactId>
margaretha9025d642018-01-19 17:35:22 +0100668 </exclusion>
669 </exclusions>
margarethaf68daa62017-09-21 02:11:24 +0200670 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200671 <dependency>
672 <groupId>org.hibernate</groupId>
673 <artifactId>hibernate-jpamodelgen</artifactId>
margaretha9025d642018-01-19 17:35:22 +0100674 <version>${hibernate.version}</version>
margarethad3c0fc92017-10-25 15:03:32 +0200675 <scope>provided</scope>
676 </dependency>
margaretha9025d642018-01-19 17:35:22 +0100677 <dependency>
margaretha58e18632018-02-15 13:04:42 +0100678 <groupId>org.hibernate</groupId>
679 <artifactId>hibernate-java8</artifactId>
680 <version>${hibernate.version}</version>
margarethae6c711b2018-02-06 21:55:04 +0100681 </dependency>
682 <dependency>
margaretha34954472018-10-24 20:05:17 +0200683 <groupId>org.hibernate</groupId>
684 <artifactId>hibernate-c3p0</artifactId>
685 <version>${hibernate.version}</version>
margarethac7196d22018-08-27 14:20:03 +0200686 </dependency>
margaretha34954472018-10-24 20:05:17 +0200687
margaretha318fec32017-10-24 12:11:58 +0200688 <!-- MySql -->
689 <dependency>
690 <groupId>mysql</groupId>
691 <artifactId>mysql-connector-java</artifactId>
dependabot[bot]c60ca472022-07-25 17:02:41 +0000692 <version>8.0.30</version>
margaretha318fec32017-10-24 12:11:58 +0200693 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200694
695 <!-- Jersey -->
696 <dependency>
abcpro10c746892022-11-03 22:47:04 +0000697 <groupId>org.glassfish.jersey.test-framework</groupId>
margarethaf68daa62017-09-21 02:11:24 +0200698 <artifactId>jersey-test-framework-core</artifactId>
699 <version>${jersey.version}</version>
700 <scope>test</scope>
margaretha368d2d32023-02-28 11:23:22 +0100701 <exclusions>
702 <exclusion>
703 <groupId>org.junit.jupiter</groupId>
704 <artifactId>junit-jupiter</artifactId>
705 </exclusion>
706 </exclusions>
margarethaf68daa62017-09-21 02:11:24 +0200707 </dependency>
708 <dependency>
abcpro10c746892022-11-03 22:47:04 +0000709 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
710 <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
margarethaf68daa62017-09-21 02:11:24 +0200711 <version>${jersey.version}</version>
712 <scope>test</scope>
margaretha368d2d32023-02-28 11:23:22 +0100713 <exclusions>
714 <exclusion>
715 <groupId>org.junit.jupiter</groupId>
716 <artifactId>junit-jupiter</artifactId>
717 </exclusion>
718 </exclusions>
margarethaf68daa62017-09-21 02:11:24 +0200719 </dependency>
margaretha34954472018-10-24 20:05:17 +0200720
margaretha58e18632018-02-15 13:04:42 +0100721 <!-- velocity -->
722 <dependency>
723 <groupId>org.apache.velocity</groupId>
724 <artifactId>velocity-engine-core</artifactId>
dependabot[bot]2d36f792021-03-08 05:46:34 +0000725 <version>2.3</version>
margaretha58e18632018-02-15 13:04:42 +0100726 </dependency>
727 <dependency>
margaretha327d3ad2021-03-15 16:19:35 +0100728 <groupId>org.apache.velocity.tools</groupId>
729 <artifactId>velocity-tools-generic</artifactId>
730 <version>3.1</version>
margaretha58e18632018-02-15 13:04:42 +0100731 </dependency>
732 <!-- mail -->
733 <dependency>
734 <groupId>com.sun.mail</groupId>
735 <artifactId>javax.mail</artifactId>
dependabot[bot]7baae302020-07-06 05:43:30 +0000736 <version>1.6.2</version>
margaretha58e18632018-02-15 13:04:42 +0100737 </dependency>
738 <dependency>
739 <groupId>javax.activation</groupId>
740 <artifactId>activation</artifactId>
741 <version>1.1.1</version>
742 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200743
margarethafb027f92018-04-23 20:00:13 +0200744 <!-- OAuth -->
745 <dependency>
746 <groupId>org.apache.oltu.oauth2</groupId>
747 <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
margarethae4034a82018-07-02 14:46:59 +0200748 <version>1.0.2</version>
margarethafb027f92018-04-23 20:00:13 +0200749 </dependency>
margarethae4034a82018-07-02 14:46:59 +0200750 <dependency>
751 <groupId>org.apache.oltu.oauth2</groupId>
752 <artifactId>org.apache.oltu.oauth2.client</artifactId>
753 <version>1.0.2</version>
754 </dependency>
margaretha235a6802018-06-06 19:21:53 +0200755 <!-- JWT -->
756 <dependency>
757 <groupId>com.nimbusds</groupId>
758 <artifactId>nimbus-jose-jwt</artifactId>
dependabot[bot]92ad6942023-02-22 17:12:19 +0000759 <version>9.31</version>
margaretha235a6802018-06-06 19:21:53 +0200760 </dependency>
margaretha9c78e1a2018-06-27 14:12:35 +0200761
margarethaec247dd2018-06-12 21:55:46 +0200762 <!-- OpenId -->
763 <dependency>
margaretha9c78e1a2018-06-27 14:12:35 +0200764 <groupId>com.nimbusds</groupId>
765 <artifactId>oauth2-oidc-sdk</artifactId>
dependabot[bot]5a172a92023-08-04 17:04:35 +0000766 <version>10.13.2</version>
margarethaec247dd2018-06-12 21:55:46 +0200767 </dependency>
Marc Kupietzceea30c2020-05-15 16:00:03 +0200768
769 <!-- Project Lombok -->
770 <dependency>
771 <groupId>org.projectlombok</groupId>
772 <artifactId>lombok</artifactId>
dependabot[bot]949bef62023-05-25 17:56:39 +0000773 <version>1.18.28</version>
Marc Kupietzceea30c2020-05-15 16:00:03 +0200774 <scope>provided</scope>
775 </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 Kupietz0a378672022-04-30 09:35:27 +0200784
785 <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-text -->
786 <dependency>
787 <groupId>org.apache.commons</groupId>
788 <artifactId>commons-text</artifactId>
dependabot[bot]5e19a782022-09-29 17:04:17 +0000789 <version>1.10.0</version>
Marc Kupietz0a378672022-04-30 09:35:27 +0200790 </dependency>
791
margaretha235a6802018-06-06 19:21:53 +0200792 </dependencies>
Akron63656052018-11-07 12:20:13 +0100793</project>