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>query</artifactId>
13 <version>1.0.6</version>
14 <name>Wordcount-Query</name>
15 <description>Query 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>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-devtools</artifactId>
36 <scope>runtime</scope>
37 <optional>true</optional>
40 <groupId>org.springframework.boot</groupId>
41 <artifactId>spring-boot-configuration-processor</artifactId>
42 <optional>true</optional>
45 <groupId>org.projectlombok</groupId>
46 <artifactId>lombok</artifactId>
47 <optional>true</optional>
50 <groupId>org.springframework.boot</groupId>
51 <artifactId>spring-boot-starter-test</artifactId>
55 <groupId>org.springframework.kafka</groupId>
56 <artifactId>spring-kafka</artifactId>
60 <groupId>org.springframework.kafka</groupId>
61 <artifactId>spring-kafka-test</artifactId>
65 <groupId>org.assertj</groupId>
66 <artifactId>assertj-core</artifactId>
74 <groupId>org.springframework.boot</groupId>
75 <artifactId>spring-boot-maven-plugin</artifactId>
79 <groupId>org.projectlombok</groupId>
80 <artifactId>lombok</artifactId>
86 <groupId>io.fabric8</groupId>
87 <artifactId>docker-maven-plugin</artifactId>
88 <version>${docker-maven-plugin.version}</version>
92 <name>juplo/wordcount--%a:%v</name>