Skip to content
Snippets Groups Projects
Commit 9aee5053 authored by OZGCloud's avatar OZGCloud
Browse files

Merge pull request 'OZG-6710-Update-Common-lib' (#2) from OZG-6710-Update-Common-lib into master

parents 0508a407 7e8ad143
Branches
Tags
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<parent> <parent>
<groupId>de.ozgcloud.common</groupId> <groupId>de.ozgcloud.common</groupId>
<artifactId>ozgcloud-common-dependencies</artifactId> <artifactId>ozgcloud-common-dependencies</artifactId>
<version>4.3.2</version> <version>4.5.0-SNAPSHOT</version>
<relativePath /> <relativePath />
</parent> </parent>
......
...@@ -5,4 +5,3 @@ net.devh.boot.grpc.client.autoconfigure.GrpcClientSecurityAutoConfiguration ...@@ -5,4 +5,3 @@ net.devh.boot.grpc.client.autoconfigure.GrpcClientSecurityAutoConfiguration
net.devh.boot.grpc.client.autoconfigure.GrpcClientTraceAutoConfiguration net.devh.boot.grpc.client.autoconfigure.GrpcClientTraceAutoConfiguration
net.devh.boot.grpc.client.autoconfigure.GrpcDiscoveryClientAutoConfiguration net.devh.boot.grpc.client.autoconfigure.GrpcDiscoveryClientAutoConfiguration
net.devh.boot.grpc.common.autoconfigure.GrpcCommonCodecAutoConfiguration net.devh.boot.grpc.common.autoconfigure.GrpcCommonCodecAutoConfiguration
net.devh.boot.grpc.common.autoconfigure.GrpcCommonTraceAutoConfiguration
package de.ozgcloud.document;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.mock.mockito.MockBean;
import de.ozgcloud.apilib.common.command.grpc.CommandMapper;
import de.ozgcloud.common.test.ITCase;
@ITCase
class DocumentManagerApplicationITCase {
@MockBean
private CommandMapper commandMapper;
@Test
void shouldLoadContext() {// NOSONAR
}
}
...@@ -4,12 +4,13 @@ import static org.assertj.core.api.Assertions.*; ...@@ -4,12 +4,13 @@ import static org.assertj.core.api.Assertions.*;
import org.junit.jupiter.api.Nested; import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import org.mapstruct.factory.Mappers;
import org.mockito.InjectMocks; import org.mockito.InjectMocks;
class BescheidVorgangMapperTest { class BescheidVorgangMapperTest {
@InjectMocks @InjectMocks
private BescheidVorgangMapperImpl mapper; private final BescheidVorgangMapper mapper = Mappers.getMapper(BescheidVorgangMapper.class);
@Nested @Nested
class TestMapVorgang { class TestMapVorgang {
......
...@@ -21,3 +21,7 @@ spring: ...@@ -21,3 +21,7 @@ spring:
cloud: cloud:
config: config:
enabled: false enabled: false
grpc:
server:
port: -1
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>de.ozgcloud.common</groupId> <groupId>de.ozgcloud.common</groupId>
<artifactId>ozgcloud-common-parent</artifactId> <artifactId>ozgcloud-common-parent</artifactId>
<version>4.3.2</version> <version>4.5.0-SNAPSHOT</version>
<relativePath /> <relativePath />
</parent> </parent>
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
<packaging>pom</packaging> <packaging>pom</packaging>
<properties> <properties>
<vorgang-manager.version>2.13.0</vorgang-manager.version> <vorgang-manager.version>2.17.0-SNAPSHOT</vorgang-manager.version>
<nachrichten-manager.version>2.9.0</nachrichten-manager.version> <nachrichten-manager.version>2.14.0-SNAPSHOT</nachrichten-manager.version>
<api-lib.version>0.12.0</api-lib.version> <api-lib.version>0.12.0</api-lib.version>
<spring-cloud-config-client.version>4.1.3</spring-cloud-config-client.version> <spring-cloud-config-client.version>4.1.3</spring-cloud-config-client.version>
</properties> </properties>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment