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 @@ ...@@ -6,7 +6,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.9.0-SNAPSHOT</version> <version>4.9.0</version>
</parent> </parent>
<groupId>de.ozgcloud.osiv2</groupId> <groupId>de.ozgcloud.osiv2</groupId>
...@@ -17,19 +17,14 @@ ...@@ -17,19 +17,14 @@
<description>OSIv2-Postfach-Anbindung für OZG-Cloud-Nachrichten</description> <description>OSIv2-Postfach-Anbindung für OZG-Cloud-Nachrichten</description>
<properties> <properties>
<api-lib.version>0.14.0</api-lib.version> <api-lib.version>0.16.0</api-lib.version>
<nachrichten-manager.version>2.14.0</nachrichten-manager.version> <nachrichten-manager.version>2.17.0-SNAPSHOT</nachrichten-manager.version>
<mockserver-client.version>5.15.0</mockserver-client.version> <mockserver-client.version>5.15.0</mockserver-client.version>
<openapi-generator.version>7.10.0</openapi-generator.version> <openapi-generator.version>7.10.0</openapi-generator.version>
<swagger-parser.version>2.1.23</swagger-parser.version> <swagger-parser.version>2.1.23</swagger-parser.version>
</properties> </properties>
<dependencies> <dependencies>
<!-- OZG-Cloud --> <!-- OZG-Cloud -->
<dependency>
<groupId>de.ozgcloud.api-lib</groupId>
<artifactId>ozg-cloud-spring-boot-starter</artifactId>
<version>${api-lib.version}</version>
</dependency>
<dependency> <dependency>
<groupId>de.ozgcloud.nachrichten</groupId> <groupId>de.ozgcloud.nachrichten</groupId>
<artifactId>nachrichten-manager-postfach-interface</artifactId> <artifactId>nachrichten-manager-postfach-interface</artifactId>
...@@ -48,21 +43,6 @@ ...@@ -48,21 +43,6 @@
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-oauth2-client</artifactId> <artifactId>spring-boot-starter-oauth2-client</artifactId>
</dependency> </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> <dependency>
<groupId>org.mapstruct</groupId> <groupId>org.mapstruct</groupId>
......
...@@ -5,6 +5,7 @@ import de.ozgcloud.nachrichten.postfach.PostfachAddress; ...@@ -5,6 +5,7 @@ import de.ozgcloud.nachrichten.postfach.PostfachAddress;
public class PostfachAddressTestFactory { public class PostfachAddressTestFactory {
public static final String MAILBOX_ID = "testMailboxId"; public static final String MAILBOX_ID = "testMailboxId";
public static final String SERVICE_KONTO_TYPE = "TYPE1";
public static PostfachAddress create() { public static PostfachAddress create() {
return createBuilder().build(); return createBuilder().build();
...@@ -13,6 +14,7 @@ public class PostfachAddressTestFactory { ...@@ -13,6 +14,7 @@ public class PostfachAddressTestFactory {
public static PostfachAddress.PostfachAddressBuilder createBuilder() { public static PostfachAddress.PostfachAddressBuilder createBuilder() {
return PostfachAddress.builder() return PostfachAddress.builder()
.type(1) .type(1)
.serviceKontoType("TYPE1")
.identifier(DummyStringBasedIdentifier.builder() .identifier(DummyStringBasedIdentifier.builder()
.mailboxId(MAILBOX_ID) .mailboxId(MAILBOX_ID)
.build()); .build());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment