| <?xml version="1.0" encoding="UTF-8"?> | 
 | <!--  | 
 | ******************************************************************************* | 
 | * Copyright (c) 2019 Contributors to the Eclipse Foundation | 
 | * | 
 | * See the NOTICE file(s) distributed with this work for additional | 
 | * information regarding copyright ownership. | 
 | * | 
 | * This program and the accompanying materials are made available under the | 
 | * terms of the Eclipse Public License v. 2.0 which is available at | 
 | * http://www.eclipse.org/legal/epl-2.0. | 
 | * | 
 | * SPDX-License-Identifier: EPL-2.0 | 
 | ******************************************************************************* | 
 | --> | 
 | <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | 
 |  | 
 | <modelVersion>4.0.0</modelVersion> | 
 | <parent> | 
 | 	<groupId>org.springframework.boot</groupId> | 
 | 	<artifactId>spring-boot-starter-parent</artifactId> | 
 | 	<version>2.2.1.RELEASE</version> | 
 | 	<relativePath /> <!-- lookup parent from repository --> | 
 | </parent> | 
 | <groupId>org.eclipse.openk</groupId> | 
 | <artifactId>statement-public-affairs</artifactId> | 
 | <version>1.0.1</version> | 
 | <name>statement-public-affairs</name> | 
 | <description>StatementPublicAffairs project for openKONSEQUENZ</description> | 
 |  | 
 | <properties> | 
 | 	<maven.test.skip>false</maven.test.skip> | 
 |  | 
 | 	<java.version>1.8</java.version> | 
 | 	<spring-cloud.version>Hoxton.RELEASE</spring-cloud.version> | 
 | 	<springfox.version>2.9.2</springfox.version> | 
 | 	<spring-security-test.version>5.2.1.RELEASE</spring-security-test.version> | 
 | 	<sonar-maven-plugin.version>3.6.0.1398</sonar-maven-plugin.version> | 
 | 	<jacoco-maven-plugin.version>0.7.9</jacoco-maven-plugin.version> | 
 | 	<mapstruct.version>1.2.0.Final</mapstruct.version> | 
 | 	<postgresql.version>42.2.8</postgresql.version> | 
 | 	<lombock.version>1.18.10</lombock.version> | 
 | 	<h2.version>1.4.200</h2.version> | 
 | 	<spring-boot.version>2.1.0.RELEASE</spring-boot.version> | 
 | 	<jsonwebtoken.version>0.9.1</jsonwebtoken.version> | 
 | 	<openfeign.version>2.2.0.RELEASE</openfeign.version> | 
 | 	<keycloak-core.version>3.4.2.Final</keycloak-core.version> | 
 | 	<resource.delimiter>^</resource.delimiter> | 
 | 	<p.type>war</p.type> | 
 | </properties> | 
 |  | 
 | <dependencies> | 
 |  | 
 | 	<dependency> | 
 | 		<groupId>org.springframework.boot</groupId> | 
 | 		<artifactId>spring-boot-starter-data-jpa</artifactId> | 
 | 		<version>${spring-boot.version}</version> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>org.springframework.boot</groupId> | 
 | 		<artifactId>spring-boot-starter-security</artifactId> | 
 | 		<version>${spring-boot.version}</version> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>org.springframework.boot</groupId> | 
 | 		<artifactId>spring-boot-starter-web</artifactId> | 
 | 		<version>${spring-boot.version}</version> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>org.springframework.boot</groupId> | 
 | 		<artifactId>spring-boot-starter-mail</artifactId> | 
 | 		<version>${spring-boot.version}</version> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>org.springframework.boot</groupId> | 
 | 		<artifactId>spring-boot-starter-aop</artifactId> | 
 | 		<version>${spring-boot.version}</version> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>org.springframework.boot</groupId> | 
 | 		<artifactId>spring-boot-starter-jdbc</artifactId> | 
 | 		<version>${spring-boot.version}</version> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>org.projectlombok</groupId> | 
 | 		<artifactId>lombok</artifactId> | 
 | 		<version>${lombok.version}</version> | 
 | 		<optional>true</optional> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>org.postgresql</groupId> | 
 | 		<artifactId>postgresql</artifactId> | 
 | 		<version>${postgresql.version}</version> | 
 | 		<scope>runtime</scope> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>org.springframework.cloud</groupId> | 
 | 		<artifactId>spring-cloud-starter-openfeign</artifactId> | 
 | 		<version>${openfeign.version}</version> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>org.springframework.cloud</groupId> | 
 | 		<artifactId>spring-cloud-starter-netflix-ribbon</artifactId> | 
 | 		<version>${openfeign.version}</version> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>org.keycloak</groupId> | 
 | 		<artifactId>keycloak-core</artifactId> | 
 | 		<version>${keycloak-core.version}</version> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>io.jsonwebtoken</groupId> | 
 | 		<artifactId>jjwt</artifactId> | 
 | 		<version>${jsonwebtoken.version}</version> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>io.springfox</groupId> | 
 | 		<artifactId>springfox-swagger2</artifactId> | 
 | 		<version>${springfox.version}</version> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>io.springfox</groupId> | 
 | 		<artifactId>springfox-swagger-ui</artifactId> | 
 | 		<version>${springfox.version}</version> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>org.springframework.boot</groupId> | 
 | 		<artifactId>spring-boot-starter-test</artifactId> | 
 | 		<version>${spring-boot.version}</version> | 
 | 		<scope>test</scope> | 
 | 		<exclusions> | 
 | 			<exclusion> | 
 | 				<groupId>org.junit.vintage</groupId> | 
 | 				<artifactId>junit-vintage-engine</artifactId> | 
 | 			</exclusion> | 
 | 		</exclusions> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>org.springframework.security</groupId> | 
 | 		<artifactId>spring-security-test</artifactId> | 
 | 		<version>${spring-security-test.version}</version> | 
 | 		<scope>test</scope> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>org.junit.jupiter</groupId> | 
 | 		<artifactId>junit-jupiter</artifactId> | 
 | 		<version>5.4.1</version> | 
 | 		<scope>test</scope> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>com.h2database</groupId> | 
 | 		<artifactId>h2</artifactId> | 
 | 		<version>${h2.version}</version> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>org.apache.pdfbox</groupId> | 
 | 		<artifactId>pdfbox</artifactId> | 
 | 		<version>2.0.6</version> | 
 | 	</dependency> | 
 | 	<dependency> | 
 | 		<groupId>org.locationtech.proj4j</groupId> | 
 | 		<artifactId>proj4j</artifactId> | 
 | 		<version>1.1.0</version> | 
 | 	</dependency> | 
 |  | 
 | </dependencies> | 
 | <packaging>${p.type}</packaging> | 
 | <build> | 
 | 	<finalName>${project.artifactId}</finalName> | 
 | 	<resources> | 
 | 		<resource> | 
 | 			<directory>src/main/resources</directory> | 
 | 			<filtering>true</filtering> | 
 | 			<includes> | 
 | 				<include>**/*.yml</include> | 
 | 				<include>**/*.properties</include> | 
 | 				<include>**/*.json</include> | 
 | 				<include>**/*.xml</include> | 
 | 				<include>**/*.csv</include> | 
 | 			</includes> | 
 | 		</resource> | 
 | 		<resource> | 
 | 			<directory>src/main/resources</directory> | 
 | 			<filtering>false</filtering> | 
 | 			<includes> | 
 | 				<include>**/*.pdf</include> | 
 | 			</includes> | 
 | 		</resource> | 
 | 	</resources> | 
 |  | 
 | 	<plugins> | 
 | 		<plugin> | 
 | 			<groupId>org.springframework.boot</groupId> | 
 | 			<artifactId>spring-boot-maven-plugin</artifactId> | 
 | 		</plugin> | 
 | 		<plugin> | 
 | 			<groupId>org.jacoco</groupId> | 
 | 			<artifactId>jacoco-maven-plugin</artifactId> | 
 | 			<version>${jacoco-maven-plugin.version}</version> | 
 | 			<configuration> | 
 | 				<skip>${maven.test.skip}</skip> | 
 | 				<output>file</output> | 
 | 				<append>true</append> | 
 | 				<excludes> | 
 | 					<exclude>**/Globals.*</exclude> | 
 | 				</excludes> | 
 | 			</configuration> | 
 | 			<executions> | 
 | 				<execution> | 
 | 					<id>jacoco-initialize</id> | 
 | 					<goals> | 
 | 						<goal>prepare-agent</goal> | 
 | 					</goals> | 
 | 				</execution> | 
 | 				<execution> | 
 | 					<id>jacoco-site</id> | 
 | 					<phase>verify</phase> | 
 | 					<goals> | 
 | 						<goal>report</goal> | 
 | 					</goals> | 
 | 				</execution> | 
 | 			</executions> | 
 | 		</plugin> | 
 | 		<plugin> | 
 | 			<groupId>org.sonarsource.scanner.maven</groupId> | 
 | 			<artifactId>sonar-maven-plugin</artifactId> | 
 | 			<version>${sonar-maven-plugin.version}</version> | 
 | 		</plugin> | 
 |  | 
 | 	</plugins> | 
 | </build> | 
 |  | 
 | </project> |