1d2212c54fa62699c1603eff4907a084b0519fc9
[demos/kafka/wordcount] / 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5         <parent>
6                 <groupId>org.springframework.boot</groupId>
7                 <artifactId>spring-boot-starter-parent</artifactId>
8                 <version>3.0.2</version>
9                 <relativePath/> <!-- lookup parent from repository -->
10         </parent>
11         <groupId>de.juplo.kafka.wordcount</groupId>
12         <artifactId>counter</artifactId>
13         <version>1.1.1</version>
14         <name>Wordcount-Counter</name>
15         <description>Word-counting stream-processor of the multi-user wordcount-example</description>
16         <properties>
17                 <docker-maven-plugin.version>0.33.0</docker-maven-plugin.version>
18         </properties>
19         <dependencies>
20                 <dependency>
21                         <groupId>org.springframework.boot</groupId>
22                         <artifactId>spring-boot-starter-actuator</artifactId>
23                 </dependency>
24                 <dependency>
25                         <groupId>org.springframework.boot</groupId>
26                         <artifactId>spring-boot-starter-web</artifactId>
27                 </dependency>
28                 <dependency>
29                         <groupId>org.apache.kafka</groupId>
30                         <artifactId>kafka-streams</artifactId>
31                 </dependency>
32
33                 <dependency>
34                         <groupId>org.springframework.boot</groupId>
35                         <artifactId>spring-boot-devtools</artifactId>
36                         <scope>runtime</scope>
37                         <optional>true</optional>
38                 </dependency>
39                 <dependency>
40                         <groupId>org.springframework.boot</groupId>
41                         <artifactId>spring-boot-configuration-processor</artifactId>
42                         <optional>true</optional>
43                 </dependency>
44                 <dependency>
45                         <groupId>org.projectlombok</groupId>
46                         <artifactId>lombok</artifactId>
47                         <optional>true</optional>
48                 </dependency>
49                 <dependency>
50                         <groupId>org.springframework.boot</groupId>
51                         <artifactId>spring-boot-starter-test</artifactId>
52                         <scope>test</scope>
53                 </dependency>
54         </dependencies>
55
56         <build>
57                 <plugins>
58                         <plugin>
59                                 <groupId>org.springframework.boot</groupId>
60                                 <artifactId>spring-boot-maven-plugin</artifactId>
61                                 <configuration>
62                                         <excludes>
63                                                 <exclude>
64                                                         <groupId>org.projectlombok</groupId>
65                                                         <artifactId>lombok</artifactId>
66                                                 </exclude>
67                                         </excludes>
68                                 </configuration>
69                         </plugin>
70                         <plugin>
71                                 <groupId>io.fabric8</groupId>
72                                 <artifactId>docker-maven-plugin</artifactId>
73                                 <version>${docker-maven-plugin.version}</version>
74                                 <configuration>
75                                         <images>
76                                                 <image>
77                                                         <name>juplo/wordcount--%a:%v</name>
78                                                 </image>
79                                         </images>
80                                 </configuration>
81                         </plugin>
82                 </plugins>
83         </build>
84
85 </project>