Merge der überarbeiteten Compose-Konfiguration ('deserialization')
[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>springified-endless-consumer</artifactId>
16   <version>1.0-SNAPSHOT</version>
17   <name>Springified Endless Consumer: a Simple Consumer-Group that is implemented using Spring Kafka and 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-validation</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.springframework.boot</groupId>
30       <artifactId>spring-boot-starter-actuator</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.springframework.boot</groupId>
34       <artifactId>spring-boot-configuration-processor</artifactId>
35       <optional>true</optional>
36     </dependency>
37     <dependency>
38       <groupId>org.apache.kafka</groupId>
39       <artifactId>kafka-clients</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.springframework.kafka</groupId>
43       <artifactId>spring-kafka</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   </dependencies>
65
66   <build>
67     <plugins>
68       <plugin>
69         <groupId>org.springframework.boot</groupId>
70         <artifactId>spring-boot-maven-plugin</artifactId>
71         <executions>
72           <execution>
73             <goals>
74               <goal>build-info</goal>
75             </goals>
76           </execution>
77         </executions>
78       </plugin>
79       <plugin>
80         <groupId>pl.project13.maven</groupId>
81         <artifactId>git-commit-id-plugin</artifactId>
82       </plugin>
83       <plugin>
84         <groupId>io.fabric8</groupId>
85         <artifactId>docker-maven-plugin</artifactId>
86         <version>0.33.0</version>
87         <configuration>
88           <images>
89             <image>
90               <name>juplo/%a:%v</name>
91             </image>
92           </images>
93         </configuration>
94         <executions>
95           <execution>
96              <id>build</id>
97              <phase>package</phase>
98              <goals>
99                <goal>build</goal>
100              </goals>
101           </execution>
102         </executions>
103       </plugin>
104         <plugin>
105             <groupId>org.apache.maven.plugins</groupId>
106             <artifactId>maven-compiler-plugin</artifactId>
107             <configuration>
108                 <source>9</source>
109                 <target>9</target>
110             </configuration>
111         </plugin>
112     </plugins>
113   </build>
114
115 </project>