Spring-Version des Endless-Stream-Producer's
[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>endless-stream-spring-producer</artifactId>
16   <name>Endless Producer: a Spring Producer that endlessly writes numbers into a topic</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.springframework.kafka</groupId>
35       <artifactId>spring-kafka</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   </dependencies>
47
48   <build>
49     <plugins>
50       <plugin>
51         <groupId>org.springframework.boot</groupId>
52         <artifactId>spring-boot-maven-plugin</artifactId>
53         <executions>
54           <execution>
55             <goals>
56               <goal>build-info</goal>
57             </goals>
58           </execution>
59         </executions>
60       </plugin>
61       <plugin>
62         <groupId>pl.project13.maven</groupId>
63         <artifactId>git-commit-id-plugin</artifactId>
64       </plugin>
65       <plugin>
66         <groupId>io.fabric8</groupId>
67         <artifactId>docker-maven-plugin</artifactId>
68         <version>0.33.0</version>
69         <configuration>
70           <images>
71             <image>
72               <name>juplo/%a:%v</name>
73             </image>
74           </images>
75         </configuration>
76         <executions>
77           <execution>
78              <id>build</id>
79              <phase>package</phase>
80              <goals>
81                <goal>build</goal>
82              </goals>
83           </execution>
84         </executions>
85       </plugin>
86     </plugins>
87   </build>
88
89 </project>