Merge der überarbeiteten Compose-Konfiguration ('rest-producer')
[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-producer</artifactId>
16   <name>Springified REST Producer</name>
17   <description>A Simple Producer that is implemented with the help of Spring Kafka and takes messages via POST and confirms successs</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-actuator</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.springframework.boot</groupId>
31       <artifactId>spring-boot-configuration-processor</artifactId>
32       <optional>true</optional>
33     </dependency>
34     <dependency>
35       <groupId>org.springframework.kafka</groupId>
36       <artifactId>spring-kafka</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.projectlombok</groupId>
40       <artifactId>lombok</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.springframework.boot</groupId>
44       <artifactId>spring-boot-starter-test</artifactId>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.springframework.kafka</groupId>
49       <artifactId>spring-kafka-test</artifactId>
50       <scope>test</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.awaitility</groupId>
54       <artifactId>awaitility</artifactId>
55       <scope>test</scope>
56     </dependency>
57   </dependencies>
58
59   <build>
60     <plugins>
61       <plugin>
62         <groupId>org.springframework.boot</groupId>
63         <artifactId>spring-boot-maven-plugin</artifactId>
64         <executions>
65           <execution>
66             <goals>
67               <goal>build-info</goal>
68             </goals>
69           </execution>
70         </executions>
71       </plugin>
72       <plugin>
73         <groupId>pl.project13.maven</groupId>
74         <artifactId>git-commit-id-plugin</artifactId>
75       </plugin>
76       <plugin>
77         <groupId>io.fabric8</groupId>
78         <artifactId>docker-maven-plugin</artifactId>
79         <version>0.33.0</version>
80         <configuration>
81           <images>
82             <image>
83               <name>juplo/%a:%v</name>
84             </image>
85           </images>
86         </configuration>
87         <executions>
88           <execution>
89              <id>build</id>
90              <phase>package</phase>
91              <goals>
92                <goal>build</goal>
93              </goals>
94           </execution>
95         </executions>
96       </plugin>
97     </plugins>
98   </build>
99
100 </project>