counter: 1.2.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>3.0.2</version>
9                 <relativePath/> <!-- lookup parent from repository -->
10         </parent>
11         <groupId>de.juplo.kafka.wordcount</groupId>
12         <artifactId>counter</artifactId>
13         <version>1.2.4</version>
14         <name>Wordcount-Counter</name>
15         <description>Word-counting stream-processor of the multi-user wordcount-example</description>
16         <properties>
17                 <docker-maven-plugin.version>0.33.0</docker-maven-plugin.version>
18         </properties>
19         <dependencies>
20                 <dependency>
21                         <groupId>org.springframework.boot</groupId>
22                         <artifactId>spring-boot-starter-actuator</artifactId>
23                 </dependency>
24                 <dependency>
25                         <groupId>org.springframework.boot</groupId>
26                         <artifactId>spring-boot-starter-web</artifactId>
27                 </dependency>
28                 <dependency>
29                         <groupId>org.apache.kafka</groupId>
30                         <artifactId>kafka-streams</artifactId>
31                 </dependency>
32                 <dependency>
33                         <groupId>org.springframework.kafka</groupId>
34                         <artifactId>spring-kafka</artifactId>
35                 </dependency>
36
37                 <dependency>
38                         <groupId>org.springframework.boot</groupId>
39                         <artifactId>spring-boot-devtools</artifactId>
40                         <scope>runtime</scope>
41                         <optional>true</optional>
42                 </dependency>
43                 <dependency>
44                         <groupId>org.springframework.boot</groupId>
45                         <artifactId>spring-boot-configuration-processor</artifactId>
46                         <optional>true</optional>
47                 </dependency>
48                 <dependency>
49                         <groupId>org.projectlombok</groupId>
50                         <artifactId>lombok</artifactId>
51                         <optional>true</optional>
52                 </dependency>
53
54                 <dependency>
55                         <groupId>org.springframework.boot</groupId>
56                         <artifactId>spring-boot-starter-test</artifactId>
57                         <scope>test</scope>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.springframework.kafka</groupId>
61                         <artifactId>spring-kafka-test</artifactId>
62                         <scope>test</scope>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.awaitility</groupId>
66                         <artifactId>awaitility</artifactId>
67                         <scope>test</scope>
68                 </dependency>
69                 <dependency>
70                         <groupId>org.assertj</groupId>
71                         <artifactId>assertj-core</artifactId>
72                         <scope>test</scope>
73                 </dependency>
74         </dependencies>
75
76         <build>
77                 <plugins>
78                         <plugin>
79                                 <artifactId>maven-failsafe-plugin</artifactId>
80                         </plugin>
81                         <plugin>
82                                 <groupId>org.springframework.boot</groupId>
83                                 <artifactId>spring-boot-maven-plugin</artifactId>
84                                 <configuration>
85                                         <excludes>
86                                                 <exclude>
87                                                         <groupId>org.projectlombok</groupId>
88                                                         <artifactId>lombok</artifactId>
89                                                 </exclude>
90                                         </excludes>
91                                 </configuration>
92                         </plugin>
93                         <plugin>
94                                 <groupId>io.fabric8</groupId>
95                                 <artifactId>docker-maven-plugin</artifactId>
96                                 <version>${docker-maven-plugin.version}</version>
97                                 <configuration>
98                                         <images>
99                                                 <image>
100                                                         <name>juplo/wordcount--%a:%v</name>
101                                                 </image>
102                                         </images>
103                                 </configuration>
104                         </plugin>
105                 </plugins>
106         </build>
107
108 </project>