Testfall, der die API aufruft und prüft, ob Nachrichten versendet werden
[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.6.5</version>
11     <relativePath/> <!-- lookup parent from repository -->
12   </parent>
13
14   <groupId>de.juplo.kafka</groupId>
15   <artifactId>rest-producer</artifactId>
16   <name>REST Producer: a Simple Producer that takes messages via POST and confirms successs</name>
17   <version>1.0-SNAPSHOT</version>
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-actuator</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.springframework.boot</groupId>
30       <artifactId>spring-boot-configuration-processor</artifactId>
31       <optional>true</optional>
32     </dependency>
33     <dependency>
34       <groupId>org.apache.kafka</groupId>
35       <artifactId>kafka-clients</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.projectlombok</groupId>
39       <artifactId>lombok</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.springframework.boot</groupId>
43       <artifactId>spring-boot-starter-test</artifactId>
44       <scope>test</scope>
45     </dependency>
46     <dependency>
47       <groupId>org.springframework.kafka</groupId>
48       <artifactId>spring-kafka</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>