6dfd615938a1bad0363cc9d19618343ab690d6b7
[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>2.5.4</version>
9                 <relativePath/> <!-- lookup parent from repository -->
10         </parent>
11         <groupId>de.juplo.kafka.wordcount</groupId>
12         <artifactId>recorder</artifactId>
13         <version>0.0.1-SNAPSHOT</version>
14         <name>Wordcount-Recorder</name>
15         <description>Recorder-service of the multi-user wordcount-example</description>
16         <properties>
17                 <java.version>11</java.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
29                 <dependency>
30                         <groupId>org.springframework.boot</groupId>
31                         <artifactId>spring-boot-devtools</artifactId>
32                         <scope>runtime</scope>
33                         <optional>true</optional>
34                 </dependency>
35                 <dependency>
36                         <groupId>org.springframework.boot</groupId>
37                         <artifactId>spring-boot-configuration-processor</artifactId>
38                         <optional>true</optional>
39                 </dependency>
40                 <dependency>
41                         <groupId>org.projectlombok</groupId>
42                         <artifactId>lombok</artifactId>
43                         <optional>true</optional>
44                 </dependency>
45                 <dependency>
46                         <groupId>org.springframework.boot</groupId>
47                         <artifactId>spring-boot-starter-test</artifactId>
48                         <scope>test</scope>
49                 </dependency>
50         </dependencies>
51
52         <build>
53                 <plugins>
54                         <plugin>
55                                 <groupId>org.springframework.boot</groupId>
56                                 <artifactId>spring-boot-maven-plugin</artifactId>
57                                 <configuration>
58                                         <excludes>
59                                                 <exclude>
60                                                         <groupId>org.projectlombok</groupId>
61                                                         <artifactId>lombok</artifactId>
62                                                 </exclude>
63                                         </excludes>
64                                 </configuration>
65                         </plugin>
66                 </plugins>
67         </build>
68
69 </project>