From 57e3e191f4e0292c872d3eec5263ced674d10594 Mon Sep 17 00:00:00 2001 From: OZGCloud <ozgcloud@mgm-tp.com> Date: Wed, 8 Jun 2022 10:02:35 +0200 Subject: [PATCH] OZG-1517 move GrpcObjectMapper --- goofy-server/pom.xml | 4 ++++ .../itvsh/goofy/common/command/CommandRemoteService.java | 2 +- pom.xml | 7 ++++++- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/goofy-server/pom.xml b/goofy-server/pom.xml index 343214e21b..d253cdbe8a 100644 --- a/goofy-server/pom.xml +++ b/goofy-server/pom.xml @@ -85,6 +85,10 @@ <groupId>de.itvsh.ozg.pluto</groupId> <artifactId>pluto-interface</artifactId> </dependency> + <dependency> + <groupId>de.itvsh.ozg.pluto</groupId> + <artifactId>pluto-utils</artifactId> + </dependency> <!-- tools --> <dependency> diff --git a/goofy-server/src/main/java/de/itvsh/goofy/common/command/CommandRemoteService.java b/goofy-server/src/main/java/de/itvsh/goofy/common/command/CommandRemoteService.java index a72c3cdeb8..0185cb89bc 100644 --- a/goofy-server/src/main/java/de/itvsh/goofy/common/command/CommandRemoteService.java +++ b/goofy-server/src/main/java/de/itvsh/goofy/common/command/CommandRemoteService.java @@ -7,7 +7,7 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import de.itvsh.goofy.common.callcontext.ContextService; -import de.itvsh.ozg.pluto.common.GrpcObjectMapper; +import de.itvsh.kop.pluto.common.grpc.GrpcObjectMapper; import de.itvsh.ozg.pluto.grpc.command.CommandServiceGrpc.CommandServiceBlockingStub; import de.itvsh.ozg.pluto.grpc.command.GrpcCreateCommandRequest; import de.itvsh.ozg.pluto.grpc.command.GrpcExistsPendingCommandsRequest; diff --git a/pom.xml b/pom.xml index 2ae4c90976..67bc593edd 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ <parent> <groupId>de.itvsh.kop.common</groupId> <artifactId>kop-common-parent</artifactId> - <version>1.1.0</version> + <version>1.1.1-SNAPSHOT</version> </parent> <modules> @@ -34,6 +34,11 @@ <artifactId>pluto-interface</artifactId> <version>${pluto.version}</version> </dependency> + <dependency> + <groupId>de.itvsh.ozg.pluto</groupId> + <artifactId>pluto-utils</artifactId> + <version>${pluto.version}</version> + </dependency> </dependencies> </dependencyManagement> -- GitLab