-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpom.xml
More file actions
37 lines (31 loc) · 1.44 KB
/
pom.xml
File metadata and controls
37 lines (31 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.emmanuelneri</groupId>
<artifactId>database-stream-changes</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<kafka-streams.version>2.4.0</kafka-streams.version>
<vertx.version>3.8.5</vertx.version>
<jackson.version>2.9.9</jackson.version>
<junit.version>4.12</junit.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<reactiverse.vertx.maven.plugin.version>1.0.22</reactiverse.vertx.maven.plugin.version>
<fabric8.docker.plugin.version>0.33.0</fabric8.docker.plugin.version>
<apache.maven.assembly.plugin.version>3.2.0</apache.maven.assembly.plugin.version>
</properties>
<modules>
<module>customer-schema</module>
<module>customer-stream</module>
<module>sale-schema</module>
<module>sale-stream</module>
<module>sale-consumer</module>
<module>debezium-api</module>
<module>mapper-api</module>
</modules>
</project>