-
Notifications
You must be signed in to change notification settings - Fork 40
/
pom.xml
107 lines (99 loc) · 4.13 KB
/
pom.xml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?xml version="1.0"?>
<!--
~ /*
~ * Copyright memiiso Authors.
~ *
~ * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
~ */
-->
<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">
<parent>
<groupId>io.debezium</groupId>
<artifactId>debezium-build-parent</artifactId>
<version>3.0.5.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>debezium-server-iceberg</artifactId>
<name>Debezium Server Iceberg</name>
<version>${revision}</version>
<packaging>pom</packaging>
<properties>
<!-- NOTE: this is override by release process using CLI argument -->
<revision>0.0.1-SNAPSHOT</revision>
<!-- Debezium Version! NOTE: keep same as parent.version above! -->
<version.debezium>3.0.5.Final</version.debezium>
<!-- Instruct the build to use only UTF-8 encoding for source code -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.release>17</maven.compiler.release>
<skipITs>true</skipITs>
<!-- Iceberg -->
<version.iceberg>1.7.1</version.iceberg>
<!-- Following two properties defines which version of iceberg-spark-runtime is used -->
<!-- Example https://mvnrepository.com/artifact/org.apache.iceberg/iceberg-spark-runtime-3.4_2.13/1.4.3 -->
<version.spark.major>4.0</version.spark.major>
<version.spark.major.iceebrgtemp>3.5</version.spark.major.iceebrgtemp>
<version.spark.scala>2.13</version.spark.scala>
<version.spark>${version.spark.major}.0-preview1</version.spark>
<version.hadoop>3.3.6</version.hadoop>
<version.hive>3.1.3</version.hive>
<version.googlebigdataoss>2.2.20</version.googlebigdataoss>
<version.testcontainers>1.20.4</version.testcontainers>
</properties>
<dependencyManagement>
<dependencies>
<!-- debezium server -->
<dependency>
<groupId>io.debezium</groupId>
<artifactId>debezium-server-bom</artifactId>
<version>${version.debezium}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.debezium</groupId>
<artifactId>debezium-bom</artifactId>
<version>${version.debezium}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.iceberg</groupId>
<artifactId>iceberg-bom</artifactId>
<version>${version.iceberg}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>debezium-server-iceberg-sink</module>
<module>debezium-server-iceberg-dist</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>[3.6.3,)</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>