diff --git a/bescheid-manager/pom.xml b/bescheid-manager/pom.xml
index b6308a07884d245cb7f7e44f2b0b42586cfdcc77..c917df3cccb61be0076d0b04971b5069cddcdbae 100644
--- a/bescheid-manager/pom.xml
+++ b/bescheid-manager/pom.xml
@@ -44,11 +44,6 @@
 			<groupId>de.itvsh.kop.common</groupId>
 			<artifactId>kop-common-lib</artifactId>
 		</dependency>
-		<dependency>
-			<groupId>jakarta.validation</groupId>
-			<artifactId>jakarta.validation-api</artifactId>
-			<version>3.0.2</version>
-		</dependency>
 		<dependency>
 			<groupId>org.springframework.boot</groupId>
 			<artifactId>spring-boot-starter-freemarker</artifactId>
diff --git a/pluto-server/pom.xml b/pluto-server/pom.xml
index 2aab282345ba688274c6d1f26bf89fbee202ca9e..3403da759c8eb0907e204b222e7d98e90f6c5346 100644
--- a/pluto-server/pom.xml
+++ b/pluto-server/pom.xml
@@ -59,6 +59,7 @@
 
 		<maven-deploy-plugin.version>3.0.0</maven-deploy-plugin.version>
 		<find-and-replace-maven-plugin.version>1.1.0</find-and-replace-maven-plugin.version>
+		<docker-java.version>3.3.3</docker-java.version>
 
 	</properties>
 
@@ -306,7 +307,7 @@
 		<dependency>
 			<groupId>com.github.docker-java</groupId>
 			<artifactId>docker-java-api</artifactId>
-			<version>3.3.3</version>
+			<version>${docker-java.version}</version>
 		</dependency>
 
 		<!-- mongock -->
@@ -386,28 +387,6 @@
 					</dependency>
 				</dependencies>
 			</plugin>
-			<plugin>
-				<groupId>io.github.floverfelt</groupId>
-				<artifactId>find-and-replace-maven-plugin</artifactId>
-				<version>${find-and-replace-maven-plugin.version}</version>
-				<executions>
-					<execution>
-						<id>exec</id>
-						<phase>process-classes</phase>
-						<goals>
-							<goal>find-and-replace</goal>
-						</goals>
-						<configuration>
-							<replacementType>file-contents</replacementType>
-							<baseDir>target/generated-sources/</baseDir>
-							<findRegex>javax</findRegex>
-							<replaceValue>jakarta</replaceValue>
-							<recursive>true</recursive>
-							<fileMask>.java</fileMask>
-						</configuration>
-					</execution>
-				</executions>
-			</plugin>
 		</plugins>
 	</build>