README.sh liest auch das Dead-Letter-Topic aus
[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>sumup-adder-springified</artifactId>
16   <version>1.0-SNAPSHOT</version>
17   <name>SumUp Adder</name>
18   <description>Calculates the sum for the send messages. This version consumes JSON-messages.</description>
19
20   <properties>
21     <java.version>11</java.version>
22   </properties>
23
24   <dependencies>
25     <dependency>
26       <groupId>org.springframework.boot</groupId>
27       <artifactId>spring-boot-starter-web</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.springframework.boot</groupId>
31       <artifactId>spring-boot-starter-data-mongodb</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.springframework.boot</groupId>
35       <artifactId>spring-boot-starter-validation</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.springframework.boot</groupId>
39       <artifactId>spring-boot-starter-actuator</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.springframework.boot</groupId>
43       <artifactId>spring-boot-configuration-processor</artifactId>
44       <optional>true</optional>
45     </dependency>
46     <dependency>
47       <groupId>org.springframework.kafka</groupId>
48       <artifactId>spring-kafka</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.projectlombok</groupId>
52       <artifactId>lombok</artifactId>
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-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>de.flapdoodle.embed</groupId>
71       <artifactId>de.flapdoodle.embed.mongo</artifactId>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.assertj</groupId>
76       <artifactId>assertj-core</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         <executions>
87           <execution>
88             <goals>
89               <goal>build-info</goal>
90             </goals>
91           </execution>
92         </executions>
93       </plugin>
94       <plugin>
95         <groupId>pl.project13.maven</groupId>
96         <artifactId>git-commit-id-plugin</artifactId>
97       </plugin>
98       <plugin>
99         <groupId>io.fabric8</groupId>
100         <artifactId>docker-maven-plugin</artifactId>
101         <version>0.33.0</version>
102         <configuration>
103           <images>
104             <image>
105               <name>juplo/%a:%v</name>
106             </image>
107           </images>
108         </configuration>
109         <executions>
110           <execution>
111              <id>build</id>
112              <phase>package</phase>
113              <goals>
114                <goal>build</goal>
115              </goals>
116           </execution>
117         </executions>
118       </plugin>
119       <plugin>
120         <artifactId>maven-failsafe-plugin</artifactId>
121       </plugin>
122     </plugins>
123   </build>
124
125 </project>