Version des `EndlessProducer`, der Nachrichten vom Typ `Long` schreibt
[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-long-producer</artifactId>
16   <name>Endless Long-Producer</name>
17   <description>A Simple Producer that endlessly writes numbers into a topic (as long's!)</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.apache.kafka</groupId>
36       <artifactId>kafka-clients</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   </dependencies>
48
49   <build>
50     <plugins>
51       <plugin>
52         <groupId>org.springframework.boot</groupId>
53         <artifactId>spring-boot-maven-plugin</artifactId>
54         <executions>
55           <execution>
56             <goals>
57               <goal>build-info</goal>
58             </goals>
59           </execution>
60         </executions>
61       </plugin>
62       <plugin>
63         <groupId>pl.project13.maven</groupId>
64         <artifactId>git-commit-id-plugin</artifactId>
65       </plugin>
66       <plugin>
67         <groupId>io.fabric8</groupId>
68         <artifactId>docker-maven-plugin</artifactId>
69         <version>0.33.0</version>
70         <configuration>
71           <images>
72             <image>
73               <name>juplo/%a:%v</name>
74             </image>
75           </images>
76         </configuration>
77         <executions>
78           <execution>
79              <id>build</id>
80              <phase>package</phase>
81              <goals>
82                <goal>build</goal>
83              </goals>
84           </execution>
85         </executions>
86       </plugin>
87     </plugins>
88   </build>
89
90 </project>