This is an automated email from the ASF dual-hosted git repository.
hxd pushed a commit to branch rel/0.10
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git
The following commit(s) were added to refs/heads/rel/0.10 by this push:
new 98fd3df fix Dependency convergence error in flink-tsfile-connector
98fd3df is described below
commit 98fd3dfef5144930d043c3a4179d1ec7e719c713
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>