feat: implemented a listen-method for the chat-service based on a Flux
[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.0</version>
9     <relativePath/> <!-- lookup parent from repository -->
10   </parent>
11   <groupId>de.juplo.kafka</groupId>
12   <artifactId>chatroom</artifactId>
13   <version>0.0.1-SNAPSHOT</version>
14   <name>Chatroom Service</name>
15   <description>Simplified Chatroom-Service, that needs state on the server</description>
16   <properties>
17     <java.version>17</java.version>
18   </properties>
19   <dependencies>
20     <dependency>
21       <groupId>org.springframework.boot</groupId>
22       <artifactId>spring-boot-starter-webflux</artifactId>
23     </dependency>
24
25     <dependency>
26       <groupId>org.springframework.boot</groupId>
27       <artifactId>spring-boot-devtools</artifactId>
28       <scope>runtime</scope>
29       <optional>true</optional>
30     </dependency>
31     <dependency>
32       <groupId>org.springframework.boot</groupId>
33       <artifactId>spring-boot-configuration-processor</artifactId>
34       <optional>true</optional>
35     </dependency>
36     <dependency>
37       <groupId>org.projectlombok</groupId>
38       <artifactId>lombok</artifactId>
39       <optional>true</optional>
40     </dependency>
41     <dependency>
42       <groupId>org.springframework.boot</groupId>
43       <artifactId>spring-boot-starter-test</artifactId>
44       <scope>test</scope>
45     </dependency>
46   </dependencies>
47
48   <build>
49     <plugins>
50       <plugin>
51         <groupId>org.springframework.boot</groupId>
52         <artifactId>spring-boot-maven-plugin</artifactId>
53         <configuration>
54           <excludes>
55             <exclude>
56               <groupId>org.projectlombok</groupId>
57               <artifactId>lombok</artifactId>
58             </exclude>
59           </excludes>
60         </configuration>
61       </plugin>
62     </plugins>
63   </build>
64
65 </project>