From b6c97e682086c5264a5ec1fb3d4ebba2fbbd0aeb Mon Sep 17 00:00:00 2001
From: OZG-Cloud Team <noreply@ozg-sh.de>
Date: Thu, 21 Mar 2024 15:22:04 +0100
Subject: [PATCH] OZG-5217 fix dependencies

---
 forwarder/pom.xml                                             | 4 ++++
 router/pom.xml                                                | 4 ++++
 ...ringframework.boot.autoconfigure.AutoConfiguration.imports | 1 +
 3 files changed, 9 insertions(+)

diff --git a/forwarder/pom.xml b/forwarder/pom.xml
index 98f9d508..96cf1038 100644
--- a/forwarder/pom.xml
+++ b/forwarder/pom.xml
@@ -57,6 +57,10 @@
 			<groupId>net.devh</groupId>
 			<artifactId>grpc-server-spring-boot-starter</artifactId>
 		</dependency>
+		<dependency>
+			<groupId>io.grpc</groupId>
+			<artifactId>grpc-inprocess</artifactId>
+		</dependency>
 
 		<!-- Tools -->
 		<dependency>
diff --git a/router/pom.xml b/router/pom.xml
index cabec582..add9ec11 100644
--- a/router/pom.xml
+++ b/router/pom.xml
@@ -56,6 +56,10 @@
 			<groupId>net.devh</groupId>
 			<artifactId>grpc-client-spring-boot-starter</artifactId>
 		</dependency>
+		<dependency>
+			<groupId>io.grpc</groupId>
+			<artifactId>grpc-inprocess</artifactId>
+		</dependency>
 
 		<!-- Tools -->
 		<dependency>
diff --git a/router/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports b/router/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
index af6ec7fb..099d7599 100644
--- a/router/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
+++ b/router/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
@@ -2,4 +2,5 @@ net.devh.boot.grpc.client.autoconfigure.GrpcClientAutoConfiguration
 net.devh.boot.grpc.client.autoconfigure.GrpcClientMetricAutoConfiguration
 net.devh.boot.grpc.client.autoconfigure.GrpcClientHealthAutoConfiguration
 net.devh.boot.grpc.client.autoconfigure.GrpcClientSecurityAutoConfiguration
+net.devh.boot.grpc.client.autoconfigure.GrpcClientTraceAutoConfiguration
 net.devh.boot.grpc.client.autoconfigure.GrpcDiscoveryClientAutoConfiguration
\ No newline at end of file
-- 
GitLab