GRÜN: Erwartungen implementiert
[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-consumer</artifactId>
16   <version>1.0-SNAPSHOT</version>
17   <name>Summing Up Consumer</name>
18   <description>Calculates the sum of all natuarl numbers up to the given natural number</description>
19
20   <dependencies>
21     <dependency>
22       <groupId>org.springframework.boot</groupId>
23       <artifactId>spring-boot-starter-web</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.springframework.boot</groupId>
27       <artifactId>spring-boot-starter-data-mongodb</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.springframework.boot</groupId>
31       <artifactId>spring-boot-starter-validation</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.springframework.boot</groupId>
35       <artifactId>spring-boot-starter-actuator</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.springframework.boot</groupId>
39       <artifactId>spring-boot-configuration-processor</artifactId>
40       <optional>true</optional>
41     </dependency>
42     <dependency>
43       <groupId>org.apache.kafka</groupId>
44       <artifactId>kafka-clients</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.projectlombok</groupId>
48       <artifactId>lombok</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.springframework.boot</groupId>
52       <artifactId>spring-boot-starter-test</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.springframework.kafka</groupId>
57       <artifactId>spring-kafka-test</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.awaitility</groupId>
62       <artifactId>awaitility</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>de.flapdoodle.embed</groupId>
67       <artifactId>de.flapdoodle.embed.mongo</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         <groupId>org.springframework.boot</groupId>
81         <artifactId>spring-boot-maven-plugin</artifactId>
82         <executions>
83           <execution>
84             <goals>
85               <goal>build-info</goal>
86             </goals>
87           </execution>
88         </executions>
89       </plugin>
90       <plugin>
91         <groupId>pl.project13.maven</groupId>
92         <artifactId>git-commit-id-plugin</artifactId>
93       </plugin>
94       <plugin>
95         <groupId>io.fabric8</groupId>
96         <artifactId>docker-maven-plugin</artifactId>
97         <version>0.33.0</version>
98         <configuration>
99           <images>
100             <image>
101               <name>juplo/%a:%v</name>
102             </image>
103           </images>
104         </configuration>
105         <executions>
106           <execution>
107              <id>build</id>
108              <phase>package</phase>
109              <goals>
110                <goal>build</goal>
111              </goals>
112           </execution>
113         </executions>
114       </plugin>
115     </plugins>
116   </build>
117
118 </project>