Verbesserungen aus 'deserialization' nach 'stored-offsets' gemerged
[demos/kafka/training] / 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5   <modelVersion>4.0.0</modelVersion>
6
7   <parent>
8     <groupId>org.springframework.boot</groupId>
9     <artifactId>spring-boot-starter-parent</artifactId>
10     <version>2.7.2</version>
11     <relativePath/> <!-- lookup parent from repository -->
12   </parent>
13
14   <groupId>de.juplo.kafka</groupId>
15   <artifactId>endless-consumer</artifactId>
16   <version>1.0-SNAPSHOT</version>
17   <name>Endless Consumer: a Simple Consumer-Group that reads and prints the topic and counts the received messages for each key by topic</name>
18
19   <dependencies>
20     <dependency>
21       <groupId>org.springframework.boot</groupId>
22       <artifactId>spring-boot-starter-web</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.springframework.boot</groupId>
26       <artifactId>spring-boot-starter-data-mongodb</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.springframework.boot</groupId>
30       <artifactId>spring-boot-starter-validation</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.springframework.boot</groupId>
34       <artifactId>spring-boot-starter-actuator</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.springframework.boot</groupId>
38       <artifactId>spring-boot-configuration-processor</artifactId>
39       <optional>true</optional>
40     </dependency>
41     <dependency>
42       <groupId>org.apache.kafka</groupId>
43       <artifactId>kafka-clients</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.projectlombok</groupId>
47       <artifactId>lombok</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.springframework.boot</groupId>
51       <artifactId>spring-boot-starter-test</artifactId>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.springframework.kafka</groupId>
56       <artifactId>spring-kafka-test</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.awaitility</groupId>
61       <artifactId>awaitility</artifactId>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>de.flapdoodle.embed</groupId>
66       <artifactId>de.flapdoodle.embed.mongo</artifactId>
67       <scope>test</scope>
68     </dependency>
69   </dependencies>
70
71   <build>
72     <plugins>
73       <plugin>
74         <groupId>org.springframework.boot</groupId>
75         <artifactId>spring-boot-maven-plugin</artifactId>
76         <executions>
77           <execution>
78             <goals>
79               <goal>build-info</goal>
80             </goals>
81           </execution>
82         </executions>
83       </plugin>
84       <plugin>
85         <groupId>pl.project13.maven</groupId>
86         <artifactId>git-commit-id-plugin</artifactId>
87       </plugin>
88       <plugin>
89         <groupId>io.fabric8</groupId>
90         <artifactId>docker-maven-plugin</artifactId>
91         <version>0.33.0</version>
92         <configuration>
93           <images>
94             <image>
95               <name>juplo/%a:%v</name>
96             </image>
97           </images>
98         </configuration>
99         <executions>
100           <execution>
101              <id>build</id>
102              <phase>package</phase>
103              <goals>
104                <goal>build</goal>
105              </goals>
106           </execution>
107         </executions>
108       </plugin>
109     </plugins>
110   </build>
111
112 </project>