From 58b81e12748fda9fc01f5cbcb004e1d6f5ffbd50 Mon Sep 17 00:00:00 2001
From: Felix Reichenbach <felix.reichenbach@mgm-tp.com>
Date: Mon, 31 Mar 2025 14:02:22 +0200
Subject: [PATCH] OZG-7906 fix aggregation-manager-server name and add spring
 dependencies

---
 aggregation-manager-server/pom.xml | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/aggregation-manager-server/pom.xml b/aggregation-manager-server/pom.xml
index 51420dc..6d64ef1 100644
--- a/aggregation-manager-server/pom.xml
+++ b/aggregation-manager-server/pom.xml
@@ -35,11 +35,24 @@
 		<relativePath>../</relativePath>
 	</parent>
 	<artifactId>aggregation-manager-server</artifactId>
-	<name>OZG-Cloud Aggregation Manager Job</name>
+	<name>OZG-Cloud Aggregation Manager Server</name>
 
 	<properties>
 		<spring-boot.build-image.imageName>docker.ozg-sh.de/aggregation-manager-server:build-latest</spring-boot.build-image.imageName>
 	</properties>
+
+	<dependencies>
+		<!-- Spring -->
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-web</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-actuator</artifactId>
+		</dependency>
+	</dependencies>
+
 	<build>
 		<plugins>
 			<plugin>
-- 
GitLab