Skip to content
Snippets Groups Projects
Commit f16bf35e authored by Jan Zickermann's avatar Jan Zickermann
Browse files

OZG-4095 pom: Cleanup dependencies

parent 3672cca0
No related branches found
No related tags found
2 merge requests!9Draft: Ozg 4094 wiremock ausprobieren,!7Ozg-4094 Konfiguration für nachrichten-manager
Pipeline #1523 passed
......@@ -6,7 +6,7 @@
<parent>
<groupId>de.ozgcloud.common</groupId>
<artifactId>ozgcloud-common-parent</artifactId>
<version>4.9.0-SNAPSHOT</version>
<version>4.9.0</version>
</parent>
<groupId>de.ozgcloud.osiv2</groupId>
......@@ -17,19 +17,14 @@
<description>OSIv2-Postfach-Anbindung für OZG-Cloud-Nachrichten</description>
<properties>
<api-lib.version>0.14.0</api-lib.version>
<nachrichten-manager.version>2.14.0</nachrichten-manager.version>
<api-lib.version>0.16.0</api-lib.version>
<nachrichten-manager.version>2.17.0-SNAPSHOT</nachrichten-manager.version>
<mockserver-client.version>5.15.0</mockserver-client.version>
<openapi-generator.version>7.10.0</openapi-generator.version>
<swagger-parser.version>2.1.23</swagger-parser.version>
</properties>
<dependencies>
<!-- OZG-Cloud -->
<dependency>
<groupId>de.ozgcloud.api-lib</groupId>
<artifactId>ozg-cloud-spring-boot-starter</artifactId>
<version>${api-lib.version}</version>
</dependency>
<dependency>
<groupId>de.ozgcloud.nachrichten</groupId>
<artifactId>nachrichten-manager-postfach-interface</artifactId>
......@@ -48,21 +43,6 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-oauth2-client</artifactId>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>jakarta.json.bind</groupId>
<artifactId>jakarta.json.bind-api</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.eclipse</groupId>
<artifactId>yasson</artifactId>
<version>3.0.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
......
......@@ -5,6 +5,7 @@ import de.ozgcloud.nachrichten.postfach.PostfachAddress;
public class PostfachAddressTestFactory {
public static final String MAILBOX_ID = "testMailboxId";
public static final String SERVICE_KONTO_TYPE = "TYPE1";
public static PostfachAddress create() {
return createBuilder().build();
......@@ -13,6 +14,7 @@ public class PostfachAddressTestFactory {
public static PostfachAddress.PostfachAddressBuilder createBuilder() {
return PostfachAddress.builder()
.type(1)
.serviceKontoType("TYPE1")
.identifier(DummyStringBasedIdentifier.builder()
.mailboxId(MAILBOX_ID)
.build());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment