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.7</version>
9 <relativePath/> <!-- lookup parent from repository -->
11 <groupId>de.juplo.kafka.wordcount</groupId>
12 <artifactId>query</artifactId>
13 <version>2.1.1</version>
14 <name>Wordcount-Query</name>
15 <description>Query stream-processor of the multi-user wordcount-example</description>
17 <java.version>21</java.version>
18 <docker-maven-plugin.version>0.44.0</docker-maven-plugin.version>
22 <groupId>org.springframework.boot</groupId>
23 <artifactId>spring-boot-starter-actuator</artifactId>
26 <groupId>org.springframework.boot</groupId>
27 <artifactId>spring-boot-starter-web</artifactId>
30 <groupId>org.apache.kafka</groupId>
31 <artifactId>kafka-streams</artifactId>
34 <groupId>org.springframework.kafka</groupId>
35 <artifactId>spring-kafka</artifactId>
39 <groupId>org.springframework.boot</groupId>
40 <artifactId>spring-boot-devtools</artifactId>
41 <scope>runtime</scope>
42 <optional>true</optional>
45 <groupId>org.springframework.boot</groupId>
46 <artifactId>spring-boot-configuration-processor</artifactId>
47 <optional>true</optional>
50 <groupId>org.projectlombok</groupId>
51 <artifactId>lombok</artifactId>
52 <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.assertj</groupId>
66 <artifactId>assertj-core</artifactId>
74 <artifactId>maven-failsafe-plugin</artifactId>
77 <groupId>org.springframework.boot</groupId>
78 <artifactId>spring-boot-maven-plugin</artifactId>
82 <groupId>org.projectlombok</groupId>
83 <artifactId>lombok</artifactId>
89 <groupId>io.fabric8</groupId>
90 <artifactId>docker-maven-plugin</artifactId>
91 <version>${docker-maven-plugin.version}</version>
95 <name>juplo/wordcount--%a:%v</name>