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>
6 <groupId>org.springframework.boot</groupId>
7 <artifactId>spring-boot-starter-parent</artifactId>
8 <version>3.2.5</version>
9 <relativePath/> <!-- lookup parent from repository -->
11 <groupId>de.juplo.kafka.wordcount</groupId>
12 <artifactId>top10</artifactId>
13 <version>1.0.3</version>
14 <name>Wordcount-Top-10</name>
15 <description>Top-10 stream-processor of the multi-user wordcount-example</description>
17 <docker-maven-plugin.version>0.33.0</docker-maven-plugin.version>
21 <groupId>org.springframework.boot</groupId>
22 <artifactId>spring-boot-starter-actuator</artifactId>
25 <groupId>org.springframework.boot</groupId>
26 <artifactId>spring-boot-starter-web</artifactId>
29 <groupId>org.apache.kafka</groupId>
30 <artifactId>kafka-streams</artifactId>
33 <groupId>org.springframework.kafka</groupId>
34 <artifactId>spring-kafka</artifactId>
38 <groupId>org.springframework.boot</groupId>
39 <artifactId>spring-boot-devtools</artifactId>
40 <scope>runtime</scope>
41 <optional>true</optional>
44 <groupId>org.springframework.boot</groupId>
45 <artifactId>spring-boot-configuration-processor</artifactId>
46 <optional>true</optional>
49 <groupId>org.projectlombok</groupId>
50 <artifactId>lombok</artifactId>
51 <optional>true</optional>
55 <groupId>org.springframework.boot</groupId>
56 <artifactId>spring-boot-starter-test</artifactId>
60 <groupId>org.springframework.kafka</groupId>
61 <artifactId>spring-kafka-test</artifactId>
65 <groupId>org.awaitility</groupId>
66 <artifactId>awaitility</artifactId>
70 <groupId>org.assertj</groupId>
71 <artifactId>assertj-core</artifactId>
79 <artifactId>maven-failsafe-plugin</artifactId>
82 <groupId>org.springframework.boot</groupId>
83 <artifactId>spring-boot-maven-plugin</artifactId>
87 <groupId>org.projectlombok</groupId>
88 <artifactId>lombok</artifactId>
94 <groupId>io.fabric8</groupId>
95 <artifactId>docker-maven-plugin</artifactId>
96 <version>${docker-maven-plugin.version}</version>
100 <name>juplo/wordcount--%a:%v</name>