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