diff --git a/pom.xml b/pom.xml
index 67225ec76639409c08056751602ce781b1c5fcf9..48e4e433e7d1aa152df6cbb336ee58492c4fbb66 100644
--- a/pom.xml
+++ b/pom.xml
@@ -220,17 +220,4 @@
 			</plugins>
 		</pluginManagement>
 	</build>
-
-	<distributionManagement>
-		<repository>
-			<id>ozg-nexus</id>
-			<name>ozg-releases</name>
-			<url>https://nexus.ozg-sh.de/repository/ozg-releases/</url>
-		</repository>
-		<snapshotRepository>
-			<id>ozg-snapshots-nexus</id>
-			<name>ozg-snapshots</name>
-			<url>https://nexus.ozg-sh.de/repository/ozg-snapshots/</url>
-		</snapshotRepository>
-	</distributionManagement>
 </project>
diff --git a/run_local.sh b/run_local.sh
index 2115b363771d1abd309380119e8b2c843335f04a..aa82ca615597e4637c14755f1b48f841ed944c8a 100755
--- a/run_local.sh
+++ b/run_local.sh
@@ -1,2 +1,2 @@
 #!/usr/bin/env bash
-./mvnw -f user-manager-server/pom.xml quarkus:dev -Dquarkus.profile=local,remotekc
\ No newline at end of file
+./mvnw -pl user-manager-server quarkus:dev -Dquarkus.profile=local,remotekc
\ No newline at end of file
diff --git a/user-manager-server/pom.xml b/user-manager-server/pom.xml
index d188600af02daac2476452c3f3b16dae8a5001b3..2d8abe44efc0e5fb7692457456eae1709a586f4a 100644
--- a/user-manager-server/pom.xml
+++ b/user-manager-server/pom.xml
@@ -24,7 +24,8 @@
     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>
@@ -249,32 +250,41 @@
 			<!-- Core plugins -->
 			<plugin>
 				<artifactId>maven-compiler-plugin</artifactId>
-				<configuration>
-					<fork>true</fork>
-					<annotationProcessorPaths>
-						<path>
-							<groupId>org.projectlombok</groupId>
-							<artifactId>lombok</artifactId>
-							<version>${lombok.version}</version>
-						</path>
-						<path>
-							<groupId>org.mapstruct</groupId>
-							<artifactId>mapstruct-processor</artifactId>
-							<version>${mapstruct.version}</version>
-						</path>
-						<!-- other annotation processors -->
-					</annotationProcessorPaths>
-					<showWarnings>true</showWarnings>
-					<compilerArgs>
-						<arg>-parameters</arg>
-						<compilerArg>
-							-Amapstruct.defaultComponentModel=jakarta
-						</compilerArg>
-						<compilerArg>
-							-Amapstruct.unmappedTargetPolicy=WARN
-						</compilerArg>
-					</compilerArgs>
-				</configuration>
+				<executions>
+					<execution>
+						<id>default-compile1</id>
+						<phase>compile</phase>
+						<goals>
+							<goal>compile</goal>
+						</goals>
+						<configuration>
+							<fork>true</fork>
+							<annotationProcessorPaths>
+								<path>
+									<groupId>org.projectlombok</groupId>
+									<artifactId>lombok</artifactId>
+									<version>${lombok.version}</version>
+								</path>
+								<path>
+									<groupId>org.mapstruct</groupId>
+									<artifactId>mapstruct-processor</artifactId>
+									<version>${mapstruct.version}</version>
+								</path>
+								<!-- other annotation processors -->
+							</annotationProcessorPaths>
+							<showWarnings>true</showWarnings>
+							<compilerArgs>
+								<arg>-parameters</arg>
+								<compilerArg>
+									-Amapstruct.defaultComponentModel=jakarta
+								</compilerArg>
+								<compilerArg>
+									-Amapstruct.unmappedTargetPolicy=WARN
+								</compilerArg>
+							</compilerArgs>
+						</configuration>
+					</execution>
+				</executions>
 			</plugin>
 			<plugin>
 				<artifactId>maven-surefire-plugin</artifactId>