diff --git a/goofy-server/pom.xml b/goofy-server/pom.xml index 343214e21b00a5eaa4bc472a053b80b06ca836a9..d253cdbe8a37e82238e1e250e04b9e67de543aa6 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 a72c3cdeb8adf191181ca3c152a6235389945477..0185cb89bcfbf21d4288b96a9ce7b093b8510e93 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 2ae4c9097682aacbbe243aa896ded9bdad4ddfcb..67bc593eddb3cf03941fd01c52f3054fad2e937c 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>