| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 
 | 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | 
 | 	<modelVersion>4.0.0</modelVersion> | 
 | 	<groupId>de.ids_mannheim.korap</groupId> | 
 | 	<artifactId>Kustvakt-full</artifactId> | 
 | 	<version>0.71</version> | 
 | 	<properties> | 
 | 		<java.version>11</java.version> | 
 | 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 
 | 		<jersey.version>2.39.1</jersey.version> | 
 | 		<hibernate.version>5.6.15.Final</hibernate.version> | 
 | 		<spring.version>5.3.27</spring.version> | 
 | 		<jetty.version>9.4.51.v20230217</jetty.version> | 
 | 		<flyway.version>9.19.4</flyway.version> | 
 | 		<log4j.version>2.20.0</log4j.version> | 
 | 		<krill.version>[0.61.2,)</krill.version> | 
 | 		<koral.version>[0.39.1,)</koral.version> | 
 | 	</properties> | 
 | 	<profiles> | 
 | 		<profile> | 
 | 			<id>full</id> | 
 | 			<activation> | 
 | 				<activeByDefault>true</activeByDefault> | 
 | 			</activation> | 
 | 			<build> | 
 | 				<plugins> | 
 | 					<plugin> | 
 | 						<artifactId>maven-shade-plugin</artifactId> | 
 | 						<version>3.4.1</version> | 
 | 						<executions> | 
 | 							<!-- option 1 --> | 
 | 							<execution> | 
 | 								<id>full</id> | 
 | 								<phase>package</phase> | 
 | 								<goals> | 
 | 									<goal>shade</goal> | 
 | 								</goals> | 
 | 								<configuration> | 
 | 									<finalName>Kustvakt-full-${project.version}</finalName> | 
 | 									<transformers> | 
 | 										<transformer | 
 | 											implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | 
 | 											<mainClass> | 
 | 												de.ids_mannheim.korap.server.KustvaktServer | 
 | 											</mainClass> | 
 | 										</transformer> | 
 | 										<transformer | 
 | 											implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | 
 | 											<resource>META-INF/spring.handlers | 
 | 											</resource> | 
 | 										</transformer> | 
 | 										<transformer | 
 | 											implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | 
 | 											<resource>META-INF/spring.schemas | 
 | 											</resource> | 
 | 										</transformer> | 
 | 									</transformers> | 
 | 									<filters> | 
 | 							          <filter> | 
 | 							            <artifact>*:*</artifact> | 
 | 							            <excludes> | 
 | 							              <exclude>db/lite/**</exclude> | 
 | 							            </excludes> | 
 | 							          </filter> | 
 | 							        </filters> | 
 | 								</configuration> | 
 | 							</execution> | 
 | 						</executions> | 
 | 					</plugin> | 
 | 				</plugins> | 
 | 			</build> | 
 | 		</profile> | 
 | 		 | 
 | 		 | 
 | 		<profile> | 
 | 			<id>lite</id> | 
 | 			<build> | 
 | 				<plugins> | 
 | 					<plugin> | 
 | 						<artifactId>maven-shade-plugin</artifactId> | 
 | 							<version>3.4.1</version> | 
 | 							<executions> | 
 | 								<!--option 2--> | 
 | 								<execution> | 
 | 									<id>lite</id> | 
 | 									<phase>package</phase> | 
 | 									<goals> | 
 | 										<goal>shade</goal> | 
 | 									</goals> | 
 | 									<configuration> | 
 | 										<finalName> | 
 | 											Kustvakt-lite-${project.version} | 
 | 										</finalName> | 
 | 										<transformers> | 
 | 											<transformer | 
 | 												implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | 
 | 												<mainClass> | 
 | 													de.ids_mannheim.korap.server.KustvaktLiteServer | 
 | 												</mainClass> | 
 | 											</transformer> | 
 | 											<transformer | 
 | 												implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | 
 | 												<resource>META-INF/spring.handlers | 
 | 												</resource> | 
 | 											</transformer> | 
 | 											<transformer | 
 | 												implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | 
 | 												<resource>META-INF/spring.schemas | 
 | 												</resource> | 
 | 											</transformer> | 
 | 										</transformers> | 
 | 										<filters> | 
 | 								          <filter> | 
 | 								            <artifact>*:*</artifact> | 
 | 								             <excludes> | 
 | 												<exclude>db/mysql/**</exclude> | 
 | 												<exclude>db/predefined/**</exclude> | 
 | 												<exclude>db/sqlite/**</exclude> | 
 | 												<exclude>db/test/**</exclude> | 
 | 					                            <exclude>com.novell.ldap</exclude> | 
 | 					                            <exclude>com.unboundid</exclude> | 
 | 					                            <exclude>org.glassfish.jersey.test-framework*</exclude> | 
 | 					                            <exclude>org.apache.velocity*</exclude> | 
 | 					                            <exclude>com.sun.mail</exclude> | 
 | 					                            <exclude>javax.activation</exclude> | 
 | 					                        </excludes> | 
 | 								          </filter> | 
 | 								        </filters> | 
 | 									</configuration> | 
 | 								</execution> | 
 | 							</executions> | 
 | 					</plugin> | 
 | 				</plugins> | 
 | 			</build> | 
 | 		</profile> | 
 |  | 
 | 	</profiles> | 
 | 	<build> | 
 | 		<!-- <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering>  | 
 | 			<includes> <include>**/*.info</include> <include>**/*.xml</include> <include>**/*.conf</include>  | 
 | 			<include>**/*.kustvakt</include> <include>**/*.properties</include> <include>**/*.sql</include>  | 
 | 			<include>**/*.vm</include> </includes> </resource> </resources> --> | 
 | 		<testResources> | 
 | 			<testResource> | 
 | 				<directory>src/test/resources</directory> | 
 | 			</testResource> | 
 | 			<testResource> | 
 | 				<directory>src/main/resources</directory> | 
 | 				<filtering>true</filtering> | 
 | 				<includes> | 
 | 					<include>**/*.info</include> | 
 | 					<include>**/*.conf</include> | 
 | 					<include>**/*.json</include> | 
 | 					<include>**/*.p12</include> | 
 | 					<include>**/*.jks</include> | 
 | 					<include>**/*.ldif</include> | 
 | 				</includes> | 
 | 			</testResource> | 
 | 		</testResources> | 
 | 		<plugins> | 
 | 			<!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html --> | 
 | 			<plugin> | 
 | 				<groupId>com.googlecode.maven-java-formatter-plugin</groupId> | 
 | 				<artifactId>maven-java-formatter-plugin</artifactId> | 
 | 				<version>0.4</version> | 
 | 				<configuration> | 
 | 					<configFile>${project.basedir}/Format.xml</configFile> | 
 | 					<overrideConfigCompilerVersion>true</overrideConfigCompilerVersion> | 
 | 					<compilerSource>${java.version}</compilerSource> | 
 | 					<compilerCompliance>${java.version}</compilerCompliance> | 
 | 					<compilerTargetPlatform>${java.version}</compilerTargetPlatform> | 
 | 				</configuration> | 
 | 				<!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution>  | 
 | 					</executions> --> | 
 | 			</plugin> | 
 | 			<plugin> | 
 | 				<groupId>org.apache.maven.plugins</groupId> | 
 | 				<artifactId>maven-compiler-plugin</artifactId> | 
 | 				<version>3.11.0</version> | 
 | 				<configuration> | 
 | 					<compilerVersion>${java.version}</compilerVersion> | 
 | 					<source>${java.version}</source> | 
 | 					<target>${java.version}</target> | 
 | 					<!-- <compilerArguments> <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>  | 
 | 						<processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>  | 
 | 						</compilerArguments> --> | 
 | 					<annotationProcessors> | 
 | 						<processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor> | 
 | 						<processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor> | 
 | 					</annotationProcessors> | 
 | 				</configuration> | 
 | 			</plugin> | 
 | 			<plugin> | 
 | 				<groupId>org.apache.maven.plugins</groupId> | 
 | 				<artifactId>maven-source-plugin</artifactId> | 
 | 				<version>3.2.1</version> | 
 | 				<executions> | 
 | 					<execution> | 
 | 						<id>attach-sources</id> | 
 | 						<goals> | 
 | 							<goal>jar</goal> | 
 | 						</goals> | 
 | 					</execution> | 
 | 				</executions> | 
 | 			</plugin> | 
 | 			<plugin> | 
 | 				<groupId>org.apache.maven.plugins</groupId> | 
 | 				<artifactId>maven-surefire-plugin</artifactId> | 
 | 				<version>3.1.0</version> | 
 | 				<dependencies> | 
 |                     <dependency> | 
 |                         <groupId>org.apache.maven.surefire</groupId> | 
 |                         <artifactId>surefire-junit47</artifactId> | 
 |                         <version>3.1.0</version> | 
 |                     </dependency> | 
 |                 </dependencies> | 
 | 				<configuration> | 
 | 					<reuseForks>true</reuseForks> | 
 | 					<forkCount>1</forkCount> | 
 | 					<threadCount>10</threadCount> | 
 | 					<argLine>-Xmx512m | 
 | 						-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine> | 
 | 					<excludes> | 
 | 						<exclude>de/ids_mannheim/korap/authentication/APIAuthenticationTest.java</exclude> | 
 | 						<exclude>de/ids_mannheim/korap/authentication/AuthenticationFilterTest.java</exclude> | 
 | 						<exclude>de/ids_mannheim/korap/authentication/Kustvakt*.java</exclude> | 
 | 						<exclude>de/ids_mannheim/korap/authentication/LdapTest.java</exclude> | 
 | 						<exclude>de/ids_mannheim/korap/authentication/Random*.java</exclude> | 
 | 						<exclude>de/ids_mannheim/korap/web/controller/TokenExpiryTest.java</exclude> | 
 | 						<exclude>de/ids_mannheim/korap/web/controller/AdminLoadVCTest.java</exclude> | 
 | 					</excludes> | 
 | 					<includes> | 
 | 						<include>de/ids_mannheim/korap/**/*.java</include> | 
 | 						<include>de/ids_mannheim/korap/authentication/LdapAuth3Test.java</include> | 
 | 					</includes> | 
 | 				</configuration> | 
 | 			</plugin> | 
 | 		</plugins> | 
 | 	</build> | 
 |  | 
 | 	<dependencies> | 
 | 		<!-- backport --> | 
 | 		<dependency> | 
 | 		    <groupId>backport-util-concurrent</groupId> | 
 | 		    <artifactId>backport-util-concurrent</artifactId> | 
 | 		    <version>3.1</version> | 
 | 		</dependency> | 
 | 	 | 
 | 		<!-- Jersey --> | 
 | 		<dependency> | 
 | 			<groupId>org.glassfish.jersey.core</groupId> | 
 | 			<artifactId>jersey-server</artifactId> | 
 | 			<version>${jersey.version}</version> | 
 | 		</dependency> | 
 |  | 
 | 		<dependency> | 
 | 			<groupId>org.glassfish.jersey.ext</groupId> | 
 | 			<artifactId>jersey-spring5</artifactId> | 
 | 			<version>${jersey.version}</version> | 
 | 			<exclusions> | 
 | 				<exclusion> | 
 | 					<groupId>org.springframework</groupId> | 
 | 					<artifactId>spring-core</artifactId> | 
 | 				</exclusion> | 
 | 				<exclusion> | 
 | 					<groupId>org.springframework</groupId> | 
 | 					<artifactId>spring-web</artifactId> | 
 | 				</exclusion> | 
 | 				<exclusion> | 
 | 					<groupId>org.springframework</groupId> | 
 | 					<artifactId>spring-beans</artifactId> | 
 | 				</exclusion> | 
 | 				<exclusion> | 
 | 					<groupId>org.springframework</groupId> | 
 | 					<artifactId>spring-context</artifactId> | 
 | 				</exclusion> | 
 | 				<exclusion> | 
 | 					<groupId>org.springframework</groupId> | 
 | 					<artifactId>spring-aop</artifactId> | 
 | 				</exclusion> | 
 | 			</exclusions> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- JSON --> | 
 | 		<dependency> | 
 | 			<groupId>org.glassfish.jersey.media</groupId> | 
 | 			<artifactId>jersey-media-json-jackson</artifactId> | 
 | 			<version>${jersey.version}</version> | 
 | 			<exclusions> | 
 | 				<exclusion> | 
 | 					<groupId>com.fasterxml.jackson.core</groupId> | 
 | 					<artifactId>jackson-annotations</artifactId> | 
 | 				</exclusion> | 
 | 				<exclusion> | 
 | 					<groupId>com.fasterxml.jackson.core</groupId> | 
 | 					<artifactId>jackson-databind</artifactId> | 
 | 				</exclusion> | 
 | 			</exclusions> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>net.minidev</groupId> | 
 | 			<artifactId>json-smart</artifactId> | 
 | 			<version>2.4.11</version> | 
 | 		</dependency> | 
 | 		 | 
 | 		<!-- Jersey 1x originally uses codehaus --> | 
 | 		<dependency> | 
 | 			<groupId>com.fasterxml.jackson.jaxrs</groupId> | 
 | 			<artifactId>jackson-jaxrs-json-provider</artifactId> | 
 | 			<version>2.15.1</version> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- Flyway --> | 
 | 		<dependency> | 
 | 			<groupId>org.flywaydb</groupId> | 
 | 			<artifactId>flyway-core</artifactId> | 
 | 			<version>${flyway.version}</version> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- Logging --> | 
 | 		<dependency> | 
 | 			<groupId>org.apache.logging.log4j</groupId> | 
 | 			<artifactId>log4j-api</artifactId> | 
 | 			<version>${log4j.version}</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.apache.logging.log4j</groupId> | 
 | 			<artifactId>log4j-core</artifactId> | 
 | 			<version>${log4j.version}</version> | 
 | 			<exclusions> | 
 | 				<exclusion> | 
 | 					<groupId>org.apache.logging.log4j</groupId> | 
 | 					<artifactId>log4j-api</artifactId> | 
 | 				</exclusion> | 
 | 			</exclusions> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.apache.logging.log4j</groupId> | 
 | 			<artifactId>log4j-slf4j2-impl</artifactId> | 
 | 			<version>${log4j.version}</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.apache.logging.log4j</groupId> | 
 | 			<artifactId>log4j-jul</artifactId> | 
 | 			<version>${log4j.version}</version> | 
 | 			<exclusions> | 
 | 				<exclusion> | 
 | 					<groupId>org.apache.logging.log4j</groupId> | 
 | 					<artifactId>log4j-api</artifactId> | 
 | 				</exclusion> | 
 | 			</exclusions> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.slf4j</groupId> | 
 | 			<artifactId>slf4j-api</artifactId> | 
 | 			<version>2.0.7</version> | 
 | 		</dependency> | 
 | 		 | 
 | 		<!-- Java Assist --> | 
 | 		<dependency> | 
 | 			<groupId>org.javassist</groupId> | 
 | 			<artifactId>javassist</artifactId> | 
 | 			<version>3.29.2-GA</version> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- EM:done --> | 
 |  | 
 | 		<dependency> | 
 | 			<groupId>junit</groupId> | 
 | 			<artifactId>junit</artifactId> | 
 | 			<version>4.13.2</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.projectlombok</groupId> | 
 | 			<artifactId>lombok</artifactId> | 
 | 			<version>1.18.26</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>joda-time</groupId> | 
 | 			<artifactId>joda-time</artifactId> | 
 | 			<version>2.12.5</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>de.ids_mannheim.korap</groupId> | 
 | 			<artifactId>Koral</artifactId> | 
 | 			<version>${koral.version}</version> | 
 | 			<exclusions> | 
 | 				<exclusion> | 
 | 					<groupId>org.sonatype.sisu</groupId> | 
 | 					<artifactId>sisu-guava</artifactId> | 
 | 				</exclusion> | 
 | 				<exclusion> | 
 | 					<groupId>org.eclipse.jetty</groupId> | 
 | 					<artifactId>jetty-servlet</artifactId> | 
 | 				</exclusion> | 
 | 				<exclusion> | 
 | 					<groupId>org.apache.logging.log4j</groupId> | 
 | 					<artifactId>log4j-api</artifactId> | 
 | 				</exclusion> | 
 | 				<exclusion> | 
 | 					<groupId>org.apache.logging.log4j</groupId> | 
 | 					<artifactId>log4j-core</artifactId> | 
 | 				</exclusion> | 
 | 				<exclusion> | 
 | 					<groupId>org.apache.logging.log4j</groupId> | 
 | 					<artifactId>log4j-slf4j-impl</artifactId> | 
 | 				</exclusion> | 
 | 				<exclusion> | 
 | 					<groupId>org.apache.logging.log4j</groupId> | 
 | 					<artifactId>log4j-jul</artifactId> | 
 | 				</exclusion> | 
 | 			</exclusions> | 
 | 		</dependency> | 
 |  | 
 | 		<dependency> | 
 | 			<groupId>org.xerial</groupId> | 
 | 			<artifactId>sqlite-jdbc</artifactId> | 
 | 			<version>3.41.2.1</version> | 
 | 		</dependency> | 
 |  | 
 | 		<dependency> | 
 | 			<groupId>org.apache.commons</groupId> | 
 | 			<artifactId>commons-dbcp2</artifactId> | 
 | 			<version>2.9.0</version> | 
 | 		</dependency> | 
 |  | 
 | 		<dependency> | 
 | 			<groupId>commons-validator</groupId> | 
 | 			<artifactId>commons-validator</artifactId> | 
 | 			<version>1.7</version> | 
 | 		</dependency> | 
 |  | 
 | 		<dependency> | 
 | 			<groupId>org.mindrot</groupId> | 
 | 			<artifactId>jbcrypt</artifactId> | 
 | 			<version>0.4</version> | 
 | 		</dependency> | 
 |  | 
 | 		<dependency> | 
 | 		    <groupId>javax.annotation</groupId> | 
 | 		    <artifactId>javax.annotation-api</artifactId> | 
 | 		    <version>1.3.2</version> | 
 | 		</dependency> | 
 |  | 
 | 		<dependency> | 
 | 			<groupId>de.ids_mannheim.korap</groupId> | 
 | 			<artifactId>Krill</artifactId> | 
 | 			<version>${krill.version}</version> | 
 | 			<exclusions> | 
 | 				<exclusion> | 
 | 					<groupId>org.glassfish.jersey.containers</groupId> | 
 | 					<artifactId>jersey-container-grizzly2-http</artifactId> | 
 | 				</exclusion> | 
 | 				<exclusion> | 
 | 					<groupId>org.xerial</groupId> | 
 | 					<artifactId>sqlite-jdbc</artifactId> | 
 | 				</exclusion> | 
 | 				<exclusion> | 
 | 					<groupId>org.apache.logging.log4j</groupId> | 
 | 					<artifactId>log4j-api</artifactId> | 
 | 				</exclusion> | 
 | 				<exclusion> | 
 | 					<groupId>org.apache.logging.log4j</groupId> | 
 | 					<artifactId>log4j-core</artifactId> | 
 | 				</exclusion> | 
 | 				<exclusion> | 
 | 					<groupId>org.apache.logging.log4j</groupId> | 
 | 					<artifactId>log4j-slf4j-impl</artifactId> | 
 | 				</exclusion> | 
 | 				<exclusion> | 
 | 					<groupId>org.slf4j</groupId> | 
 | 					<artifactId>jul-to-slf4j</artifactId> | 
 | 				</exclusion> | 
 | 			</exclusions> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.reflections</groupId> | 
 | 			<artifactId>reflections</artifactId> | 
 | 			<version>0.10.2</version> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- Spring --> | 
 | 		<dependency> | 
 | 			<groupId>org.springframework</groupId> | 
 | 			<artifactId>spring-core</artifactId> | 
 | 			<version>${spring.version}</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.springframework</groupId> | 
 | 			<artifactId>spring-web</artifactId> | 
 | 			<version>${spring.version}</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.springframework</groupId> | 
 | 			<artifactId>spring-orm</artifactId> | 
 | 			<version>${spring.version}</version> | 
 | 		</dependency> | 
 |  | 
 | 		<dependency> | 
 | 			<groupId>org.springframework</groupId> | 
 | 			<artifactId>spring-jdbc</artifactId> | 
 | 			<version>${spring.version}</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.springframework</groupId> | 
 | 			<artifactId>spring-tx</artifactId> | 
 | 			<version>${spring.version}</version> | 
 | 		</dependency> | 
 | 		<!-- <dependency> | 
 | 			<groupId>org.springframework.security</groupId> | 
 | 			<artifactId>spring-security-core</artifactId> | 
 | 			<version>${spring.version}</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.springframework.security</groupId> | 
 | 			<artifactId>spring-security-web</artifactId> | 
 | 			<version>${spring.version}</version> | 
 | 		</dependency> --> | 
 | 		<!-- EM: done --> | 
 | 		<dependency> | 
 | 			<groupId>org.springframework</groupId> | 
 | 			<artifactId>spring-context</artifactId> | 
 | 			<version>${spring.version}</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.springframework</groupId> | 
 | 			<artifactId>spring-context-support</artifactId> | 
 | 			<version>${spring.version}</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.springframework</groupId> | 
 | 			<artifactId>spring-test</artifactId> | 
 | 			<version>${spring.version}</version> | 
 | 			<scope>compile</scope> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- apparently this order prevents the spring schemas from being overriden  | 
 | 			in META-INF/spring.schemas, thus must stay like this --> | 
 | 		<dependency> | 
 | 			<groupId>org.springframework</groupId> | 
 | 			<artifactId>spring-aop</artifactId> | 
 | 			<version>${spring.version}</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.springframework</groupId> | 
 | 			<artifactId>spring-aspects</artifactId> | 
 | 			<version>${spring.version}</version> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- end copy --> | 
 |  | 
 | 		<dependency> | 
 | 			<groupId>commons-collections</groupId> | 
 | 			<artifactId>commons-collections</artifactId> | 
 | 			<version>3.2.2</version> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- jetty --> | 
 | 		<dependency> | 
 | 			<groupId>org.eclipse.jetty</groupId> | 
 | 			<artifactId>jetty-server</artifactId> | 
 | 			<version>${jetty.version}</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.eclipse.jetty</groupId> | 
 | 			<artifactId>jetty-servlet</artifactId> | 
 | 			<version>${jetty.version}</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.eclipse.jetty</groupId> | 
 | 			<artifactId>jetty-webapp</artifactId> | 
 | 			<version>${jetty.version}</version> | 
 | 		</dependency> | 
 |  | 
 | 		<dependency> | 
 | 			<groupId>asm</groupId> | 
 | 			<artifactId>asm</artifactId> | 
 | 			<version>3.3.1</version> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId>  | 
 | 			<artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions>  | 
 | 			<exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId>  | 
 | 			</exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId>  | 
 | 			</exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId>  | 
 | 			<artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion>  | 
 | 			<groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId>  | 
 | 			</exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId>  | 
 | 			</exclusion> </exclusions> </dependency> --> | 
 | 		<dependency> | 
 | 			<groupId>org.apache.httpcomponents</groupId> | 
 | 			<artifactId>httpclient</artifactId> | 
 | 			<version>4.5.14</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>commons-io</groupId> | 
 | 			<artifactId>commons-io</artifactId> | 
 | 			<version>2.12.0</version> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- Hibernate --> | 
 | 		<dependency> | 
 | 			<groupId>org.hibernate</groupId> | 
 | 			<artifactId>hibernate-ehcache</artifactId> | 
 | 			<version>${hibernate.version}</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.hibernate</groupId> | 
 | 			<artifactId>hibernate-jpamodelgen</artifactId> | 
 | 			<version>${hibernate.version}</version> | 
 | 			<scope>provided</scope> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>com.github.gwenn</groupId> | 
 | 			<artifactId>sqlite-dialect</artifactId> | 
 | 			<version>0.1.0</version> | 
 | 		</dependency> | 
 | 		 | 
 | 		<dependency> | 
 | 			<groupId>javax.servlet</groupId> | 
 | 			<artifactId>javax.servlet-api</artifactId> | 
 | 			<version>4.0.1</version> | 
 | 		</dependency> | 
 | 	    <dependency> | 
 | 	      <groupId>org.apache.commons</groupId> | 
 | 	      <artifactId>commons-text</artifactId> | 
 | 	      <version>1.10.0</version> | 
 | 	      <scope>test</scope> | 
 | 	    </dependency> | 
 | 		<!--<dependency> | 
 | 			<groupId>de.ids_mannheim.korap</groupId> | 
 | 			<artifactId>Kustvakt-core</artifactId> | 
 | 			<version>${project.version}</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>de.ids_mannheim.korap</groupId> | 
 | 			<artifactId>Kustvakt-core</artifactId> | 
 | 			<version>${project.version}</version> | 
 | 			<classifier>tests</classifier> | 
 |       		<type>test-jar</type> | 
 |       		<scope>test</scope> | 
 | 		</dependency>--> | 
 | 		<!-- LDAP --> | 
 | 		<dependency> | 
 | 			<groupId>com.novell.ldap</groupId> | 
 | 			<artifactId>jldap</artifactId> | 
 | 			<version>4.3</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>com.unboundid</groupId> | 
 | 			<artifactId>unboundid-ldapsdk</artifactId> | 
 | 			<version>6.0.9</version> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- Hibernate --> | 
 | 		<dependency> | 
 | 			<groupId>org.hibernate</groupId> | 
 | 			<artifactId>hibernate-entitymanager</artifactId> | 
 | 			<version>${hibernate.version}</version> | 
 | 			<exclusions> | 
 | 				<exclusion> | 
 | 					<groupId>org.javassist</groupId> | 
 | 					<artifactId>javassist</artifactId> | 
 | 				</exclusion> | 
 | 			</exclusions> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.hibernate</groupId> | 
 | 			<artifactId>hibernate-jpamodelgen</artifactId> | 
 | 			<version>${hibernate.version}</version> | 
 | 			<scope>provided</scope> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.hibernate</groupId> | 
 | 			<artifactId>hibernate-java8</artifactId> | 
 | 			<version>${hibernate.version}</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.hibernate</groupId> | 
 | 			<artifactId>hibernate-c3p0</artifactId> | 
 | 			<version>${hibernate.version}</version> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- MySql --> | 
 | 		<dependency> | 
 | 			<groupId>mysql</groupId> | 
 | 			<artifactId>mysql-connector-java</artifactId> | 
 | 			<version>8.0.30</version> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- Jersey --> | 
 | 		<dependency> | 
 | 			<groupId>org.glassfish.jersey.test-framework</groupId> | 
 | 			<artifactId>jersey-test-framework-core</artifactId> | 
 | 			<version>${jersey.version}</version> | 
 | 			<scope>test</scope> | 
 | 			<exclusions> | 
 | 				<exclusion> | 
 | 					<groupId>org.junit.jupiter</groupId> | 
 |   					<artifactId>junit-jupiter</artifactId> | 
 | 				</exclusion> | 
 | 			</exclusions> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.glassfish.jersey.test-framework.providers</groupId> | 
 | 			<artifactId>jersey-test-framework-provider-grizzly2</artifactId> | 
 | 			<version>${jersey.version}</version> | 
 | 			<scope>test</scope> | 
 | 			<exclusions> | 
 | 				<exclusion> | 
 | 					<groupId>org.junit.jupiter</groupId> | 
 |   					<artifactId>junit-jupiter</artifactId> | 
 | 				</exclusion> | 
 | 			</exclusions> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- velocity --> | 
 | 		<dependency> | 
 | 			<groupId>org.apache.velocity</groupId> | 
 | 			<artifactId>velocity-engine-core</artifactId> | 
 | 			<version>2.3</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.apache.velocity.tools</groupId> | 
 | 			<artifactId>velocity-tools-generic</artifactId> | 
 | 			<version>3.1</version> | 
 | 		</dependency> | 
 | 		<!-- mail --> | 
 | 		<dependency> | 
 | 			<groupId>com.sun.mail</groupId> | 
 | 			<artifactId>javax.mail</artifactId> | 
 | 			<version>1.6.2</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>javax.activation</groupId> | 
 | 			<artifactId>activation</artifactId> | 
 | 			<version>1.1.1</version> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- OAuth --> | 
 | 		<dependency> | 
 | 			<groupId>org.apache.oltu.oauth2</groupId> | 
 | 			<artifactId>org.apache.oltu.oauth2.authzserver</artifactId> | 
 | 			<version>1.0.2</version> | 
 | 		</dependency> | 
 | 		<dependency> | 
 | 			<groupId>org.apache.oltu.oauth2</groupId> | 
 | 			<artifactId>org.apache.oltu.oauth2.client</artifactId> | 
 | 			<version>1.0.2</version> | 
 | 		</dependency> | 
 | 		<!-- JWT --> | 
 | 		<dependency> | 
 | 			<groupId>com.nimbusds</groupId> | 
 | 			<artifactId>nimbus-jose-jwt</artifactId> | 
 | 			<version>9.31</version> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- OpenId --> | 
 | 		<dependency> | 
 | 			<groupId>com.nimbusds</groupId> | 
 | 			<artifactId>oauth2-oidc-sdk</artifactId> | 
 | 			<version>10.9.1</version> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- Project Lombok --> | 
 | 		<dependency> | 
 | 			<groupId>org.projectlombok</groupId> | 
 | 			<artifactId>lombok</artifactId> | 
 | 			<version>1.18.26</version> | 
 | 			<scope>provided</scope> | 
 | 		</dependency> | 
 | 		 | 
 | 		<!-- Mockserver --> | 
 | 		<dependency> | 
 | 		    <groupId>org.mock-server</groupId> | 
 | 		    <artifactId>mockserver-netty</artifactId> | 
 | 		    <version>5.15.0</version> | 
 | 		    <scope>test</scope> | 
 | 		</dependency> | 
 |  | 
 | 		<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-text --> | 
 | 		<dependency> | 
 | 			<groupId>org.apache.commons</groupId> | 
 | 			<artifactId>commons-text</artifactId> | 
 | 			<version>1.10.0</version> | 
 | 		</dependency> | 
 |  | 
 | 	</dependencies> | 
 | </project> |