1 <?xml version="1.0" encoding="UTF-8"?>
3 xmlns="http://maven.apache.org/POM/4.0.0"
4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
7 <modelVersion>4.0.0</modelVersion>
10 <groupId>org.springframework.boot</groupId>
11 <artifactId>spring-boot-starter-parent</artifactId>
12 <version>2.3.2.RELEASE</version>
13 <relativePath/> <!-- lookup parent from repository -->
16 <groupId>de.juplo.kafka.outbox</groupId>
17 <artifactId>polling-outbox</artifactId>
18 <version>polling-outbox-2-SNAPSHOT</version>
19 <name>Outbox (Polling)</name>
20 <description>Simple example-implementation of the Outbox-Pattern (polling variant)</description>
23 <java.version>11</java.version>
28 <groupId>org.springframework.boot</groupId>
29 <artifactId>spring-boot-starter-data-jdbc</artifactId>
32 <groupId>org.springframework.boot</groupId>
33 <artifactId>spring-boot-starter-json</artifactId>
36 <groupId>org.apache.kafka</groupId>
37 <artifactId>kafka-clients</artifactId>
40 <groupId>org.projectlombok</groupId>
41 <artifactId>lombok</artifactId>
44 <groupId>org.postgresql</groupId>
45 <artifactId>postgresql</artifactId>
48 <groupId>org.springframework.boot</groupId>
49 <artifactId>spring-boot-starter-test</artifactId>
53 <groupId>com.h2database</groupId>
54 <artifactId>h2</artifactId>
62 <groupId>org.springframework.boot</groupId>
63 <artifactId>spring-boot-maven-plugin</artifactId>
66 <groupId>io.fabric8</groupId>
67 <artifactId>docker-maven-plugin</artifactId>
68 <version>0.33.0</version>
72 <name>juplo/%a:%v</name>
79 <phase>package</phase>