feat: The position of the last seen messages is stored on a revoke
[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.1.3</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   </properties>
20   <dependencyManagement>
21     <dependencies>
22       <dependency>
23         <groupId>org.testcontainers</groupId>
24         <artifactId>testcontainers-bom</artifactId>
25         <version>1.17.6</version>
26         <type>pom</type>
27         <scope>import</scope>
28       </dependency>
29     </dependencies>
30   </dependencyManagement>
31   <dependencies>
32     <dependency>
33       <groupId>org.springframework.boot</groupId>
34       <artifactId>spring-boot-starter-webflux</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.springframework.boot</groupId>
38       <artifactId>spring-boot-starter-actuator</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.springframework.boot</groupId>
42       <artifactId>spring-boot-devtools</artifactId>
43       <scope>runtime</scope>
44       <optional>true</optional>
45     </dependency>
46     <dependency>
47       <groupId>org.springframework.boot</groupId>
48       <artifactId>spring-boot-configuration-processor</artifactId>
49       <optional>true</optional>
50     </dependency>
51     <dependency>
52       <groupId>org.projectlombok</groupId>
53       <artifactId>lombok</artifactId>
54       <optional>true</optional>
55     </dependency>
56     <dependency>
57       <groupId>org.springframework.boot</groupId>
58       <artifactId>spring-boot-starter-data-mongodb</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.apache.kafka</groupId>
62       <artifactId>kafka-clients</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.springframework.kafka</groupId>
66       <artifactId>spring-kafka</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.springframework.boot</groupId>
70       <artifactId>spring-boot-starter-test</artifactId>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>pl.rzrz</groupId>
75       <artifactId>assertj-reactor</artifactId>
76       <version>${assertj-reactor.version}</version>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.mockito</groupId>
81       <artifactId>mockito-core</artifactId>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.testcontainers</groupId>
86       <artifactId>testcontainers</artifactId>
87       <scope>test</scope>
88     </dependency>
89     <dependency>
90       <groupId>org.testcontainers</groupId>
91       <artifactId>junit-jupiter</artifactId>
92       <scope>test</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.awaitility</groupId>
96       <artifactId>awaitility</artifactId>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.springframework.kafka</groupId>
101       <artifactId>spring-kafka-test</artifactId>
102       <scope>test</scope>
103     </dependency>
104   </dependencies>
105
106   <build>
107     <plugins>
108       <plugin>
109         <groupId>org.springframework.boot</groupId>
110         <artifactId>spring-boot-maven-plugin</artifactId>
111         <configuration>
112           <excludes>
113             <exclude>
114               <groupId>org.projectlombok</groupId>
115               <artifactId>lombok</artifactId>
116             </exclude>
117           </excludes>
118         </configuration>
119       </plugin>
120       <plugin>
121         <artifactId>maven-failsafe-plugin</artifactId>
122       </plugin>
123       <plugin>
124         <groupId>io.fabric8</groupId>
125         <artifactId>docker-maven-plugin</artifactId>
126         <version>0.33.0</version>
127         <configuration>
128           <images>
129             <image>
130               <name>juplo/%a:%v</name>
131             </image>
132           </images>
133         </configuration>
134         <executions>
135           <execution>
136              <id>build</id>
137              <phase>package</phase>
138              <goals>
139                <goal>build</goal>
140              </goals>
141           </execution>
142         </executions>
143       </plugin>
144     </plugins>
145   </build>
146
147 </project>