query: 1.0.5 - Updated Spring Boot to `3.2.5`
[demos/kafka/wordcount] / 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>2.5.4</version>
9                 <relativePath/> <!-- lookup parent from repository -->
10         </parent>
11         <groupId>de.juplo.kafka.wordcount</groupId>
12         <artifactId>query</artifactId>
13         <version>1.0.4</version>
14         <name>Wordcount-Query</name>
15         <description>Query stream-processor of the multi-user wordcount-example</description>
16         <properties>
17                 <docker-maven-plugin.version>0.33.0</docker-maven-plugin.version>
18                 <java.version>11</java.version>
19                 <kafka.version>2.8.0</kafka.version>
20         </properties>
21         <dependencies>
22                 <dependency>
23                         <groupId>org.springframework.boot</groupId>
24                         <artifactId>spring-boot-starter-actuator</artifactId>
25                 </dependency>
26                 <dependency>
27                         <groupId>org.springframework.boot</groupId>
28                         <artifactId>spring-boot-starter-web</artifactId>
29                 </dependency>
30                 <dependency>
31                         <groupId>org.apache.kafka</groupId>
32                         <artifactId>kafka-streams</artifactId>
33                 </dependency>
34
35                 <dependency>
36                         <groupId>org.springframework.boot</groupId>
37                         <artifactId>spring-boot-devtools</artifactId>
38                         <scope>runtime</scope>
39                         <optional>true</optional>
40                 </dependency>
41                 <dependency>
42                         <groupId>org.springframework.boot</groupId>
43                         <artifactId>spring-boot-configuration-processor</artifactId>
44                         <optional>true</optional>
45                 </dependency>
46                 <dependency>
47                         <groupId>org.projectlombok</groupId>
48                         <artifactId>lombok</artifactId>
49                         <optional>true</optional>
50                 </dependency>
51                 <dependency>
52                         <groupId>org.springframework.boot</groupId>
53                         <artifactId>spring-boot-starter-test</artifactId>
54                         <scope>test</scope>
55                 </dependency>
56         </dependencies>
57
58         <build>
59                 <plugins>
60                         <plugin>
61                                 <groupId>org.springframework.boot</groupId>
62                                 <artifactId>spring-boot-maven-plugin</artifactId>
63                                 <configuration>
64                                         <excludes>
65                                                 <exclude>
66                                                         <groupId>org.projectlombok</groupId>
67                                                         <artifactId>lombok</artifactId>
68                                                 </exclude>
69                                         </excludes>
70                                 </configuration>
71                         </plugin>
72                         <plugin>
73                                 <groupId>io.fabric8</groupId>
74                                 <artifactId>docker-maven-plugin</artifactId>
75                                 <version>${docker-maven-plugin.version}</version>
76                                 <configuration>
77                                         <images>
78                                                 <image>
79                                                         <name>juplo/wordcount--%a:%v</name>
80                                                 </image>
81                                         </images>
82                                 </configuration>
83                         </plugin>
84                 </plugins>
85         </build>
86
87 </project>