From d266074fb39fbc74de0509f21d678731ef556335 Mon Sep 17 00:00:00 2001 From: OZGCloud <ozgcloud@mgm-tp.com> Date: Mon, 28 Aug 2023 16:01:32 +0200 Subject: [PATCH] prj42 cleanups --- ...scheidCallContextAttachingInterceptor.java | 2 +- pluto-utils/pom.xml | 22 +++++++++++++------ 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/bescheid-manager/src/main/java/de/ozgcloud/bescheid/BescheidCallContextAttachingInterceptor.java b/bescheid-manager/src/main/java/de/ozgcloud/bescheid/BescheidCallContextAttachingInterceptor.java index 42a759726..4fce105cf 100644 --- a/bescheid-manager/src/main/java/de/ozgcloud/bescheid/BescheidCallContextAttachingInterceptor.java +++ b/bescheid-manager/src/main/java/de/ozgcloud/bescheid/BescheidCallContextAttachingInterceptor.java @@ -52,7 +52,7 @@ public class BescheidCallContextAttachingInterceptor implements ClientIntercepto return metadata; } - // TODO OZG-1974 requestId zentraler erzeugen + // TODO requestId für command handling uebertragen / erstellen private String generateRequestId() { return UUID.randomUUID().toString(); } diff --git a/pluto-utils/pom.xml b/pluto-utils/pom.xml index 424716de1..1fcf6c043 100644 --- a/pluto-utils/pom.xml +++ b/pluto-utils/pom.xml @@ -24,14 +24,16 @@ 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> <groupId>de.itvsh.kop.common</groupId> <artifactId>kop-common-dependencies</artifactId> <version>1.8.0-SNAPSHOT</version> - <relativePath/> + <relativePath /> </parent> <groupId>de.itvsh.ozg.pluto</groupId> @@ -100,11 +102,17 @@ <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> - + <!-- commons --> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> + <exclusions> + <exclusion> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </exclusion> + </exclusions> </dependency> </dependencies> @@ -165,8 +173,8 @@ <version>${maven-surefire-plugin.version}</version> <configuration> <argLine> - ${surefire.jacoco.args} - </argLine> + ${surefire.jacoco.args} + </argLine> </configuration> </plugin> <plugin> @@ -175,8 +183,8 @@ <version>${maven-failsafe-plugin.version}</version> <configuration> <argLine> - ${surefire.jacoco.args} - </argLine> + ${surefire.jacoco.args} + </argLine> <classesDirectory>${project.build.outputDirectory}</classesDirectory> </configuration> <executions> -- GitLab