diff --git a/Jenkinsfile b/Jenkinsfile
index 687eec31616be291cf1af99eea89b24a228e0cb6..519a8b7318e2e5a3abd98cbd41dd8c165612b7b5 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -83,7 +83,6 @@ pipeline {
                 }
                 configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) {
                     sh 'mvn --no-transfer-progress -s $MAVEN_SETTINGS -DskipTests deploy -Dmaven.wagon.http.retryHandler.count=3'
-                    sh "mvn -s $MAVEN_SETTINGS versions:revert"
                 }
                
             }       
@@ -99,6 +98,7 @@ pipeline {
                     dir('bayernid-proxy-impl') {
                         sh 'mvn --no-transfer-progress -s $MAVEN_SETTINGS spring-boot:build-image -DskipTests -Dmaven.wagon.http.retryHandler.count=3'
                     }
+                    sh "mvn -s $MAVEN_SETTINGS versions:revert"
                 }
            }
         }
diff --git a/bayernid-proxy-impl/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports b/bayernid-proxy-impl/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
index 31f436d781244c879e37eb6d97662f3c5102e6b7..273a489d81630304017e808a7a861fa6b33405c0 100644
--- a/bayernid-proxy-impl/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
+++ b/bayernid-proxy-impl/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
@@ -1,5 +1,4 @@
 net.devh.boot.grpc.common.autoconfigure.GrpcCommonCodecAutoConfiguration
-net.devh.boot.grpc.common.autoconfigure.GrpcCommonTraceAutoConfiguration
 net.devh.boot.grpc.server.autoconfigure.GrpcAdviceAutoConfiguration
 net.devh.boot.grpc.server.autoconfigure.GrpcHealthServiceAutoConfiguration
 net.devh.boot.grpc.server.autoconfigure.GrpcMetadataConsulConfiguration
@@ -11,4 +10,3 @@ net.devh.boot.grpc.server.autoconfigure.GrpcServerAutoConfiguration
 net.devh.boot.grpc.server.autoconfigure.GrpcServerFactoryAutoConfiguration
 net.devh.boot.grpc.server.autoconfigure.GrpcServerMetricAutoConfiguration
 net.devh.boot.grpc.server.autoconfigure.GrpcServerSecurityAutoConfiguration
-net.devh.boot.grpc.server.autoconfigure.GrpcServerTraceAutoConfiguration
diff --git a/bayernid-proxy-impl/src/test/java/de/ozgcloud/nachrichten/postfach/bayernid/proxy/BayernIdProxyGrpcServiceITCase.java b/bayernid-proxy-impl/src/test/java/de/ozgcloud/nachrichten/postfach/bayernid/proxy/BayernIdProxyGrpcServiceITCase.java
index 8f9468c817590b7f34f0c83318084569ae09eaf6..f1ce66516d462b1ba6e63f17345dac1da3a85f85 100644
--- a/bayernid-proxy-impl/src/test/java/de/ozgcloud/nachrichten/postfach/bayernid/proxy/BayernIdProxyGrpcServiceITCase.java
+++ b/bayernid-proxy-impl/src/test/java/de/ozgcloud/nachrichten/postfach/bayernid/proxy/BayernIdProxyGrpcServiceITCase.java
@@ -54,7 +54,6 @@ import net.devh.boot.grpc.client.autoconfigure.GrpcClientAutoConfiguration;
 import net.devh.boot.grpc.client.autoconfigure.GrpcClientHealthAutoConfiguration;
 import net.devh.boot.grpc.client.autoconfigure.GrpcClientMetricAutoConfiguration;
 import net.devh.boot.grpc.client.autoconfigure.GrpcClientSecurityAutoConfiguration;
-import net.devh.boot.grpc.client.autoconfigure.GrpcClientTraceAutoConfiguration;
 import net.devh.boot.grpc.client.autoconfigure.GrpcDiscoveryClientAutoConfiguration;
 import net.devh.boot.grpc.client.inject.GrpcClient;
 
@@ -162,7 +161,6 @@ class BayernIdProxyGrpcServiceITCase {
 			GrpcClientHealthAutoConfiguration.class,
 			GrpcClientMetricAutoConfiguration.class,
 			GrpcClientSecurityAutoConfiguration.class,
-			GrpcClientTraceAutoConfiguration.class,
 			GrpcDiscoveryClientAutoConfiguration.class
 	})
 	static class TestConfig {
diff --git a/bayernid-proxy-interface/pom.xml b/bayernid-proxy-interface/pom.xml
index 47af8977f592362c556bf4b8ea837311c78e9b0f..1c0c4d92f4898f15d6f9a3d45903e73569213d29 100644
--- a/bayernid-proxy-interface/pom.xml
+++ b/bayernid-proxy-interface/pom.xml
@@ -30,7 +30,7 @@
 	<parent>
 		<groupId>de.ozgcloud.common</groupId>
 		<artifactId>ozgcloud-common-dependencies</artifactId>
-		<version>4.3.1</version>
+		<version>4.4.0-SNAPSHOT</version>
 		<relativePath/>
 	</parent>
 
@@ -80,6 +80,7 @@
 							<goal>run</goal>
 						</goals>
 						<configuration>
+							<protocVersion>${protobuf.version}</protocVersion>
 							<includeMavenTypes>direct</includeMavenTypes>
 							<outputTargets>
 								<outputTarget>
diff --git a/pom.xml b/pom.xml
index a6dd5300bcfbe9aebceeb3e7b7129db9e604ed82..a65a37ebf7fe5b78da41634665103a3b5ec11436 100644
--- a/pom.xml
+++ b/pom.xml
@@ -31,7 +31,7 @@
 	<parent>
 		<groupId>de.ozgcloud.common</groupId>
 		<artifactId>ozgcloud-common-parent</artifactId>
-		<version>4.3.1</version>
+		<version>4.4.0-SNAPSHOT</version>
 		<relativePath/>
 	</parent>