|
1 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +Licensed to the Apache Software Foundation (ASF) under one or more |
| 4 | +contributor license agreements. See the NOTICE file distributed with |
| 5 | +this work for additional information regarding copyright ownership. |
| 6 | +The ASF licenses this file to You under the Apache License, Version 2.0 |
| 7 | +(the "License"); you may not use this file except in compliance with |
| 8 | +the License. You may obtain a copy of the License at |
| 9 | +
|
| 10 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +
|
| 12 | +Unless required by applicable law or agreed to in writing, software |
| 13 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | +See the License for the specific language governing permissions and |
| 16 | +limitations under the License. |
| 17 | +--> |
| 18 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 19 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3 | 21 | <modelVersion>4.0.0</modelVersion>
|
4 | 22 | <parent>
|
|
13 | 31 | <name>flink-cdc-pipeline-connector-iceberg</name>
|
14 | 32 |
|
15 | 33 | <properties>
|
16 |
| - <iceberg.version>1.7.1</iceberg.version> |
| 34 | + <iceberg.version>1.6.1</iceberg.version> |
| 35 | + <hadoop.version>2.8.5</hadoop.version> |
| 36 | + <hive.version>2.3.9</hive.version> |
17 | 37 | </properties>
|
18 | 38 |
|
19 | 39 | <dependencies>
|
|
39 | 59 | <version>${flink.version}</version>
|
40 | 60 | <scope>test</scope>
|
41 | 61 | </dependency>
|
| 62 | + |
| 63 | + |
| 64 | + <!-- hadoop dependency --> |
| 65 | + |
| 66 | + <dependency> |
| 67 | + <groupId>org.apache.hadoop</groupId> |
| 68 | + <artifactId>hadoop-common</artifactId> |
| 69 | + <version>${hadoop.version}</version> |
| 70 | + <scope>provided</scope> |
| 71 | + <exclusions> |
| 72 | + <exclusion> |
| 73 | + <groupId>org.apache.avro</groupId> |
| 74 | + <artifactId>avro</artifactId> |
| 75 | + </exclusion> |
| 76 | + <exclusion> |
| 77 | + <groupId>log4j</groupId> |
| 78 | + <artifactId>log4j</artifactId> |
| 79 | + </exclusion> |
| 80 | + <exclusion> |
| 81 | + <groupId>org.slf4j</groupId> |
| 82 | + <artifactId>slf4j-log4j12</artifactId> |
| 83 | + </exclusion> |
| 84 | + <exclusion> |
| 85 | + <groupId>jdk.tools</groupId> |
| 86 | + <artifactId>jdk.tools</artifactId> |
| 87 | + </exclusion> |
| 88 | + <exclusion> |
| 89 | + <groupId>com.google.protobuf</groupId> |
| 90 | + <artifactId>protobuf-java</artifactId> |
| 91 | + </exclusion> |
| 92 | + </exclusions> |
| 93 | + </dependency> |
| 94 | + |
| 95 | + <dependency> |
| 96 | + <groupId>org.apache.hadoop</groupId> |
| 97 | + <artifactId>hadoop-hdfs</artifactId> |
| 98 | + <version>${hadoop.version}</version> |
| 99 | + <scope>provided</scope> |
| 100 | + <exclusions> |
| 101 | + <exclusion> |
| 102 | + <groupId>jdk.tools</groupId> |
| 103 | + <artifactId>jdk.tools</artifactId> |
| 104 | + </exclusion> |
| 105 | + <exclusion> |
| 106 | + <groupId>log4j</groupId> |
| 107 | + <artifactId>log4j</artifactId> |
| 108 | + </exclusion> |
| 109 | + <exclusion> |
| 110 | + <groupId>org.slf4j</groupId> |
| 111 | + <artifactId>slf4j-log4j12</artifactId> |
| 112 | + </exclusion> |
| 113 | + <exclusion> |
| 114 | + <groupId>com.google.protobuf</groupId> |
| 115 | + <artifactId>protobuf-java</artifactId> |
| 116 | + </exclusion> |
| 117 | + </exclusions> |
| 118 | + </dependency> |
| 119 | + |
| 120 | + <!-- hive dependency --> |
| 121 | + |
| 122 | + <dependency> |
| 123 | + <groupId>org.apache.hive</groupId> |
| 124 | + <artifactId>hive-metastore</artifactId> |
| 125 | + <version>${hive.version}</version> |
| 126 | + <exclusions> |
| 127 | + <exclusion> |
| 128 | + <groupId>log4j</groupId> |
| 129 | + <artifactId>log4j</artifactId> |
| 130 | + </exclusion> |
| 131 | + <exclusion> |
| 132 | + <groupId>org.slf4j</groupId> |
| 133 | + <artifactId>slf4j-log4j12</artifactId> |
| 134 | + </exclusion> |
| 135 | + <exclusion> |
| 136 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 137 | + <artifactId>jackson-annotations</artifactId> |
| 138 | + </exclusion> |
| 139 | + <exclusion> |
| 140 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 141 | + <artifactId>jackson-core</artifactId> |
| 142 | + </exclusion> |
| 143 | + <exclusion> |
| 144 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 145 | + <artifactId>jackson-databind</artifactId> |
| 146 | + </exclusion> |
| 147 | + <exclusion> |
| 148 | + <groupId>org.apache.orc</groupId> |
| 149 | + <artifactId>orc-core</artifactId> |
| 150 | + </exclusion> |
| 151 | + <exclusion> |
| 152 | + <groupId>jdk.tools</groupId> |
| 153 | + <artifactId>jdk.tools</artifactId> |
| 154 | + </exclusion> |
| 155 | + <exclusion> |
| 156 | + <groupId>com.google.protobuf</groupId> |
| 157 | + <artifactId>protobuf-java</artifactId> |
| 158 | + </exclusion> |
| 159 | + </exclusions> |
| 160 | + </dependency> |
| 161 | + |
| 162 | + <dependency> |
| 163 | + <groupId>org.apache.hive</groupId> |
| 164 | + <artifactId>hive-exec</artifactId> |
| 165 | + <version>${hive.version}</version> |
| 166 | + <scope>provided</scope> |
| 167 | + <exclusions> |
| 168 | + <exclusion> |
| 169 | + <groupId>log4j</groupId> |
| 170 | + <artifactId>log4j</artifactId> |
| 171 | + </exclusion> |
| 172 | + <exclusion> |
| 173 | + <groupId>org.slf4j</groupId> |
| 174 | + <artifactId>slf4j-log4j12</artifactId> |
| 175 | + </exclusion> |
| 176 | + <exclusion> |
| 177 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 178 | + <artifactId>jackson-annotations</artifactId> |
| 179 | + </exclusion> |
| 180 | + <exclusion> |
| 181 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 182 | + <artifactId>jackson-core</artifactId> |
| 183 | + </exclusion> |
| 184 | + <exclusion> |
| 185 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 186 | + <artifactId>jackson-databind</artifactId> |
| 187 | + </exclusion> |
| 188 | + <exclusion> |
| 189 | + <groupId>org.apache.orc</groupId> |
| 190 | + <artifactId>orc-core</artifactId> |
| 191 | + </exclusion> |
| 192 | + <exclusion> |
| 193 | + <groupId>org.pentaho</groupId> |
| 194 | + <artifactId>*</artifactId> |
| 195 | + </exclusion> |
| 196 | + <exclusion> |
| 197 | + <groupId>org.apache.calcite</groupId> |
| 198 | + <artifactId>calcite-core</artifactId> |
| 199 | + </exclusion> |
| 200 | + <exclusion> |
| 201 | + <groupId>org.apache.calcite</groupId> |
| 202 | + <artifactId>calcite-druid</artifactId> |
| 203 | + </exclusion> |
| 204 | + <exclusion> |
| 205 | + <groupId>org.apache.calcite.avatica</groupId> |
| 206 | + <artifactId>avatica</artifactId> |
| 207 | + </exclusion> |
| 208 | + <exclusion> |
| 209 | + <groupId>org.apache.calcite</groupId> |
| 210 | + <artifactId>calcite-avatica</artifactId> |
| 211 | + </exclusion> |
| 212 | + </exclusions> |
| 213 | + </dependency> |
42 | 214 | </dependencies>
|
43 | 215 | </project>
|
0 commit comments