This is an automated email from the ASF dual-hosted git repository. hxd pushed a commit to branch iotdb-761 in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git
commit a4508f2cc666a1129cada6033b26d4f39c94cb71 Author: xiangdong huang <[email protected]> AuthorDate: Wed Jun 10 18:19:28 2020 +0800 fix Dependency convergence error in flink-tsfile-connector --- flink-tsfile-connector/pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/flink-tsfile-connector/pom.xml b/flink-tsfile-connector/pom.xml index 9120572..c18aa91 100644 --- a/flink-tsfile-connector/pom.xml +++ b/flink-tsfile-connector/pom.xml @@ -64,6 +64,14 @@ <groupId>org.apache.flink</groupId> <artifactId>flink-streaming-java_2.11</artifactId> <version>${flink.version}</version> + <exclusions> + <!-- org.apache.iotdb:hadoop-tsfile uses hadoop-common:2.7.3, which uses commons-compress:1.4.1--> + <!-- flink-java uses commons-compress:1.18--> + <exclusion> + <groupId>org.apache.commons</groupId> + <artifactId>commons-compress</artifactId> + </exclusion> + </exclusions> </dependency> </dependencies> </project>
