Validierung für ApplicationProperties aktiviert
[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>rest-producer</artifactId>
16   <name>REST Producer</name>
17   <description>A Simple Producer that 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.boot</groupId>
36       <artifactId>spring-boot-starter-validation</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.apache.kafka</groupId>
40       <artifactId>kafka-clients</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</artifactId>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.springframework.kafka</groupId>
58       <artifactId>spring-kafka-test</artifactId>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.awaitility</groupId>
63       <artifactId>awaitility</artifactId>
64       <scope>test</scope>
65     </dependency>
66   </dependencies>
67
68   <build>
69     <plugins>
70       <plugin>
71         <groupId>org.springframework.boot</groupId>
72         <artifactId>spring-boot-maven-plugin</artifactId>
73         <executions>
74           <execution>
75             <goals>
76               <goal>build-info</goal>
77             </goals>
78           </execution>
79         </executions>
80       </plugin>
81       <plugin>
82         <groupId>pl.project13.maven</groupId>
83         <artifactId>git-commit-id-plugin</artifactId>
84       </plugin>
85       <plugin>
86         <groupId>io.fabric8</groupId>
87         <artifactId>docker-maven-plugin</artifactId>
88         <version>0.33.0</version>
89         <configuration>
90           <images>
91             <image>
92               <name>juplo/%a:%v</name>
93             </image>
94           </images>
95         </configuration>
96         <executions>
97           <execution>
98              <id>build</id>
99              <phase>package</phase>
100              <goals>
101                <goal>build</goal>
102              </goals>
103           </execution>
104         </executions>
105       </plugin>
106     </plugins>
107   </build>
108
109 </project>