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

OZG-6798 set application properties

parent 8020ea61
Branches
Tags
No related merge requests found
......@@ -24,7 +24,8 @@
unter der Lizenz sind dem Lizenztext zu entnehmen.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
......@@ -86,10 +87,10 @@
<artifactId>muk-postfach</artifactId>
<version>${muk-postfach.version}</version>
</dependency>
<dependency>
<dependency>
<groupId>de.ozgcloud.api-lib</groupId>
<artifactId>ozg-cloud-spring-boot-starter</artifactId>
<artifactId>api-lib-core</artifactId>
<version>${ozgcloud-starter.version}</version>
</dependency>
......@@ -221,6 +222,11 @@
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-inprocess</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
......@@ -334,4 +340,4 @@
</snapshots>
</repository>
</repositories>
</project>
</project>
\ No newline at end of file
......@@ -8,7 +8,9 @@ import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.function.Executable;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.mock.mockito.MockBean;
import de.ozgcloud.apilib.common.callcontext.OzgCloudCallContextAttachingInterceptor;
import de.ozgcloud.common.test.ITCase;
@ITCase
......@@ -17,6 +19,9 @@ class MailServiceITCase {
@Autowired
private MailService mailService;
@MockBean
private OzgCloudCallContextAttachingInterceptor interceptor;
@Nested
class TestSendMail {
......
grpc:
client:
command-manager:
address: self:self
negotiationType: PLAINTEXT
spring:
mail:
host: dummy
username: dummy
password: dummy
port: -1
ozgcloud:
notification:
mail-from: mailFrom
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment