diff --git a/formsolutions-adapter/pom.xml b/formsolutions-adapter/pom.xml
index b7f2bfb90a71170c32de94b65d452ab9c0605615..9003e17736efec45755af031f598fef3db1fe357 100644
--- a/formsolutions-adapter/pom.xml
+++ b/formsolutions-adapter/pom.xml
@@ -24,7 +24,9 @@
     unter der Lizenz sind dem Lizenztext zu entnehmen.
 
 -->
-<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">
+<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>
@@ -39,7 +41,8 @@
 	<packaging>jar</packaging>
 
 	<properties>
-		<spring-boot.build-image.imageName>docker.ozg-sh.de/formsolutions-adapter:build-latest</spring-boot.build-image.imageName>
+		<spring-boot.build-image.imageName>
+			docker.ozg-sh.de/formsolutions-adapter:build-latest</spring-boot.build-image.imageName>
 	</properties>
 
 	<dependencies>
@@ -134,16 +137,16 @@
 		<plugins>
 			<!-- tag::wsdl/xsd[] -->
 			<plugin>
-		        <groupId>com.evolvedbinary.maven.jvnet</groupId>
-		        <artifactId>jaxb30-maven-plugin</artifactId>
-		        <executions>
-		          <execution>
-		            <goals>
-		              <goal>generate</goal>
-		            </goals>
-		          </execution>
-		        </executions>
-		        <configuration>
+				<groupId>com.evolvedbinary.maven.jvnet</groupId>
+				<artifactId>jaxb30-maven-plugin</artifactId>
+				<executions>
+					<execution>
+						<goals>
+							<goal>generate</goal>
+						</goals>
+					</execution>
+				</executions>
+				<configuration>
 					<schemaLanguage>WSDL</schemaLanguage>
 					<generatePackage>de.ozgcloud.eingang.formsolutions</generatePackage>
 					<schemas>
@@ -158,8 +161,8 @@
 					</schemas>
 					<schemaLanguage>WSDL</schemaLanguage>
 				</configuration>
-		      </plugin>
-			
+			</plugin>
+
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-surefire-plugin</artifactId>
@@ -183,13 +186,23 @@
 			<plugin>
 				<groupId>org.springframework.boot</groupId>
 				<artifactId>spring-boot-maven-plugin</artifactId>
+				<configuration>
+					<image>
+						<!-- cann be removed when using common lib > 2.3.2-->
+						<builder>paketobuildpacks/builder-jammy-base</builder>
+						<env>
+							<BPE_DELIM_JAVA_TOOL_OPTIONS xml:space="preserve"> </BPE_DELIM_JAVA_TOOL_OPTIONS>
+							<BPE_APPEND_JAVA_TOOL_OPTIONS>-Dfile.encoding=UTF-8</BPE_APPEND_JAVA_TOOL_OPTIONS>
+						</env>
+					</image>
+				</configuration>
 			</plugin>
 
 			<plugin>
 				<groupId>org.jacoco</groupId>
 				<artifactId>jacoco-maven-plugin</artifactId>
 			</plugin>
-			
+
 		</plugins>
 	</build>