`git-commit-id-plugin` stört bei neuem (alten) Setup für Musterlösungen
[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>supersimple-consumer</artifactId>
16   <version>1.0-SNAPSHOT</version>
17   <name>Supersimple Consumer-Group</name>
18   <description>Most minimal Consumer-Group ever!</description>
19
20   <properties>
21     <java.version>11</java.version>
22   </properties>
23
24   <dependencies>
25     <dependency>
26       <groupId>org.springframework.boot</groupId>
27       <artifactId>spring-boot-starter-web</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     <dependency>
62       <groupId>org.assertj</groupId>
63       <artifactId>assertj-core</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>io.fabric8</groupId>
83         <artifactId>docker-maven-plugin</artifactId>
84         <version>0.33.0</version>
85         <configuration>
86           <images>
87             <image>
88               <name>juplo/%a:%v</name>
89             </image>
90           </images>
91         </configuration>
92         <executions>
93           <execution>
94              <id>build</id>
95              <phase>package</phase>
96              <goals>
97                <goal>build</goal>
98              </goals>
99           </execution>
100         </executions>
101       </plugin>
102       <plugin>
103         <artifactId>maven-failsafe-plugin</artifactId>
104       </plugin>
105     </plugins>
106   </build>
107
108 </project>