splitter: Implemented a test that proofs the splitting process
[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.7.1</version>
9                 <relativePath/> <!-- lookup parent from repository -->
10         </parent>
11         <groupId>de.juplo.kafka.wordcount</groupId>
12         <artifactId>splitter</artifactId>
13         <version>1.0.0-vanilla-kafka</version>
14         <name>Wordcount-Splitter</name>
15         <description>A version of the stream-processor for the multi-user wordcount-example, that splits the sentences up into single words, that is implemented in Vanilla-Kafka (without Kafka Streams)</description>
16         <properties>
17                 <docker-maven-plugin.version>0.33.0</docker-maven-plugin.version>
18                 <java.version>11</java.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-clients</artifactId>
32                 </dependency>
33                 <dependency>
34                         <groupId>org.hibernate.validator</groupId>
35                         <artifactId>hibernate-validator</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                 <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</artifactId>
62                         <scope>test</scope>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.springframework.kafka</groupId>
66                         <artifactId>spring-kafka-test</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                 <dependency>
75                         <groupId>org.awaitility</groupId>
76                         <artifactId>awaitility</artifactId>
77                         <scope>test</scope>
78                 </dependency>
79         </dependencies>
80
81         <build>
82                 <plugins>
83                         <plugin>
84                                 <groupId>org.springframework.boot</groupId>
85                                 <artifactId>spring-boot-maven-plugin</artifactId>
86                                 <configuration>
87                                         <excludes>
88                                                 <exclude>
89                                                         <groupId>org.projectlombok</groupId>
90                                                         <artifactId>lombok</artifactId>
91                                                 </exclude>
92                                         </excludes>
93                                 </configuration>
94                         </plugin>
95                         <plugin>
96                                 <groupId>io.fabric8</groupId>
97                                 <artifactId>docker-maven-plugin</artifactId>
98                                 <version>${docker-maven-plugin.version}</version>
99                                 <configuration>
100                                         <images>
101                                                 <image>
102                                                         <name>juplo/wordcount--%a:%v</name>
103                                                 </image>
104                                         </images>
105                                 </configuration>
106                         </plugin>
107                 </plugins>
108         </build>
109
110 </project>