feat: Refined `ChatBackendApplicationTest`
[demos/kafka/chat] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.springframework.boot</groupId>
7     <artifactId>spring-boot-starter-parent</artifactId>
8     <version>3.0.1</version>
9     <relativePath/> <!-- lookup parent from repository -->
10   </parent>
11   <groupId>de.juplo.kafka</groupId>
12   <artifactId>chat-backend</artifactId>
13   <version>0.0.1-SNAPSHOT</version>
14   <name>Chatroom Service</name>
15   <description>Simplified Chat-Service, that needs state on the server</description>
16   <properties>
17     <java.version>17</java.version>
18     <assertj-reactor.version>1.0.8</assertj-reactor.version>
19     <mongodb.version>4.7.2</mongodb.version>
20   </properties>
21   <dependencyManagement>
22     <dependencies>
23       <dependency>
24         <groupId>org.testcontainers</groupId>
25         <artifactId>testcontainers-bom</artifactId>
26         <version>1.17.6</version>
27         <type>pom</type>
28         <scope>import</scope>
29       </dependency>
30     </dependencies>
31   </dependencyManagement>
32   <dependencies>
33     <dependency>
34       <groupId>org.springframework.boot</groupId>
35       <artifactId>spring-boot-starter-webflux</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.springframework.boot</groupId>
39       <artifactId>spring-boot-starter-actuator</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.springframework.boot</groupId>
43       <artifactId>spring-boot-devtools</artifactId>
44       <scope>runtime</scope>
45       <optional>true</optional>
46     </dependency>
47     <dependency>
48       <groupId>org.springframework.boot</groupId>
49       <artifactId>spring-boot-configuration-processor</artifactId>
50       <optional>true</optional>
51     </dependency>
52     <dependency>
53       <groupId>org.projectlombok</groupId>
54       <artifactId>lombok</artifactId>
55       <optional>true</optional>
56     </dependency>
57     <dependency>
58       <groupId>org.springframework.boot</groupId>
59       <artifactId>spring-boot-starter-data-mongodb</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.springframework.boot</groupId>
63       <artifactId>spring-boot-starter-test</artifactId>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>pl.rzrz</groupId>
68       <artifactId>assertj-reactor</artifactId>
69       <version>${assertj-reactor.version}</version>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.mockito</groupId>
74       <artifactId>mockito-core</artifactId>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.testcontainers</groupId>
79       <artifactId>testcontainers</artifactId>
80       <scope>test</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.testcontainers</groupId>
84       <artifactId>junit-jupiter</artifactId>
85       <scope>test</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.awaitility</groupId>
89       <artifactId>awaitility</artifactId>
90       <scope>test</scope>
91     </dependency>
92   </dependencies>
93
94   <build>
95     <plugins>
96       <plugin>
97         <groupId>org.springframework.boot</groupId>
98         <artifactId>spring-boot-maven-plugin</artifactId>
99         <configuration>
100           <excludes>
101             <exclude>
102               <groupId>org.projectlombok</groupId>
103               <artifactId>lombok</artifactId>
104             </exclude>
105           </excludes>
106         </configuration>
107       </plugin>
108       <plugin>
109         <artifactId>maven-failsafe-plugin</artifactId>
110       </plugin>
111     </plugins>
112   </build>
113
114 </project>