Version von SumUp-Requests, die einen fachlichen Fehler erzeugt
[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-requests-fehlerteufel</artifactId>
16   <name>SumUp-Requests (Fehlerteufel!)</name>
17   <description>A service that reads computation requests from an incomming topic and generates according messages for the SumUp-Consumer on an outgoing topic. This version generates two types of JSON-messages.</description>
18   <version>1.0-SNAPSHOT</version>
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-validation</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.springframework.boot</groupId>
31       <artifactId>spring-boot-starter-actuator</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.springframework.boot</groupId>
35       <artifactId>spring-boot-configuration-processor</artifactId>
36       <optional>true</optional>
37     </dependency>
38     <dependency>
39       <groupId>org.springframework.kafka</groupId>
40       <artifactId>spring-kafka</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.projectlombok</groupId>
44       <artifactId>lombok</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.springframework.boot</groupId>
48       <artifactId>spring-boot-starter-test</artifactId>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.springframework.kafka</groupId>
53       <artifactId>spring-kafka-test</artifactId>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.awaitility</groupId>
58       <artifactId>awaitility</artifactId>
59       <scope>test</scope>
60     </dependency>
61   </dependencies>
62
63   <build>
64     <plugins>
65       <plugin>
66         <groupId>org.springframework.boot</groupId>
67         <artifactId>spring-boot-maven-plugin</artifactId>
68         <executions>
69           <execution>
70             <goals>
71               <goal>build-info</goal>
72             </goals>
73           </execution>
74         </executions>
75       </plugin>
76       <plugin>
77         <groupId>pl.project13.maven</groupId>
78         <artifactId>git-commit-id-plugin</artifactId>
79       </plugin>
80       <plugin>
81         <groupId>io.fabric8</groupId>
82         <artifactId>docker-maven-plugin</artifactId>
83         <version>0.33.0</version>
84         <configuration>
85           <images>
86             <image>
87               <name>juplo/%a:%v</name>
88             </image>
89           </images>
90         </configuration>
91         <executions>
92           <execution>
93              <id>build</id>
94              <phase>package</phase>
95              <goals>
96                <goal>build</goal>
97              </goals>
98           </execution>
99         </executions>
100       </plugin>
101     </plugins>
102   </build>
103
104 </project>