diff --git a/goofy-server/pom.xml b/goofy-server/pom.xml
index 7131e6c50f49a3a035105e57f79eb8762e59c903..2d40aba8bf7962c2189e7a76105ac1a7614c6699 100644
--- a/goofy-server/pom.xml
+++ b/goofy-server/pom.xml
@@ -1,27 +1,27 @@
 <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">
-
+		 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>de.itvsh.ozg</groupId>
 		<artifactId>goofy</artifactId>
 		<version>0.9.0-SNAPSHOT</version>
 	</parent>
-
+	
 	<artifactId>goofy-server</artifactId>
 	<name>Goofy Server</name>
 	<description>Projekt packaging deployment artefact</description>
 	<packaging>jar</packaging>
-
+	
 	<properties>
 		<maven.compiler.source>${java.version}</maven.compiler.source>
 		<maven.compiler.target>${java.version}</maven.compiler.target>
-
+		
 		<spring-boot.build-image.imageName>docker.ozg-sh.de/goofy:build-latest</spring-boot.build-image.imageName>
 	</properties>
-
+	
 	<dependencies>
 		<!-- Spring -->
 		<dependency>
@@ -44,12 +44,12 @@
 			<groupId>org.springframework.boot</groupId>
 			<artifactId>spring-boot-starter-validation</artifactId>
 		</dependency>
-
+		
 		<dependency>
 			<groupId>net.devh</groupId>
 			<artifactId>grpc-client-spring-boot-starter</artifactId>
 		</dependency>
-
+		
 		<dependency>
 			<groupId>org.springframework.boot</groupId>
 			<artifactId>spring-boot-starter-actuator</artifactId>
@@ -58,12 +58,12 @@
 			<groupId>de.codecentric</groupId>
 			<artifactId>spring-boot-admin-starter-client</artifactId>
 		</dependency>
-
+		
 		<dependency>
 			<groupId>org.springframework.boot</groupId>
 			<artifactId>spring-boot-starter-security</artifactId>
 		</dependency>
-
+		
 		<dependency>
 			<groupId>org.keycloak</groupId>
 			<artifactId>keycloak-spring-boot-starter</artifactId>
@@ -72,25 +72,25 @@
 			<groupId>org.keycloak</groupId>
 			<artifactId>keycloak-admin-client</artifactId>
 		</dependency>
-
+		
 		<dependency>
 			<groupId>com.graphql-java</groupId>
 			<artifactId>graphql-java-spring-boot-starter-webmvc</artifactId>
 			<version>2.0</version>
 		</dependency>
-
+		
 		<!-- own projects -->
 		<dependency>
 			<groupId>de.itvsh.ozg.pluto</groupId>
 			<artifactId>pluto-interface</artifactId>
 		</dependency>
-
+		
 		<!-- tools -->
 		<dependency>
 			<groupId>org.mapstruct</groupId>
 			<artifactId>mapstruct</artifactId>
 		</dependency>
-
+		
 		<!-- aspectJ -->
 		<dependency>
 			<groupId>org.aspectj</groupId>
@@ -100,7 +100,7 @@
 			<groupId>org.aspectj</groupId>
 			<artifactId>aspectjrt</artifactId>
 		</dependency>
-
+		
 		<!-- Dev -->
 		<dependency>
 			<groupId>org.projectlombok</groupId>
@@ -111,7 +111,7 @@
 			<artifactId>spring-boot-devtools</artifactId>
 			<scope>runtime</scope>
 		</dependency>
-
+		
 		<!-- commons -->
 		<dependency>
 			<groupId>org.apache.commons</groupId>
@@ -121,14 +121,14 @@
 			<groupId>commons-io</groupId>
 			<artifactId>commons-io</artifactId>
 		</dependency>
-
+		
 		<!-- Logging -->
 		<dependency>
 			<groupId>net.logstash.logback</groupId>
 			<artifactId>logstash-logback-encoder</artifactId>
 			<version>6.3</version>
 		</dependency>
-
+		
 		<!-- Test -->
 		<dependency>
 			<groupId>org.springframework.boot</groupId>
@@ -176,7 +176,7 @@
 			<optional>true</optional>
 		</dependency>
 	</dependencies>
-
+	
 	<build>
 		<finalName>${project.artifactId}</finalName>
 		<plugins>
@@ -201,7 +201,7 @@
 						</path>
 						<!-- other annotation processors -->
 					</annotationProcessorPaths>
-
+					
 					<showWarnings>true</showWarnings>
 					<compilerArgs>
 						<compilerArg>
@@ -223,7 +223,7 @@
 					</compilerArgs>
 				</configuration>
 			</plugin>
-
+			
 			<plugin>
 				<groupId>org.jacoco</groupId>
 				<artifactId>jacoco-maven-plugin</artifactId>
@@ -265,7 +265,7 @@
 				<groupId>org.springframework.boot</groupId>
 				<artifactId>spring-boot-maven-plugin</artifactId>
 			</plugin>
-
+			
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-resources-plugin</artifactId>
@@ -287,7 +287,7 @@
 					</execution>
 				</executions>
 			</plugin>
-
+			
 			<plugin>
 				<groupId>pl.project13.maven</groupId>
 				<artifactId>git-commit-id-plugin</artifactId>
@@ -306,7 +306,7 @@
 			</plugin>
 		</plugins>
 	</build>
-
+	
 	<repositories>
 		<repository>
 			<id>ozg-nexus</id>
@@ -314,7 +314,7 @@
 			<url>https://nexus.ozg-sh.de/repository/ozg-group/</url>
 		</repository>
 	</repositories>
-
+	
 	<profiles>
 		<profile>
 			<id>docker-build</id>