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 a82427438873748dc2850b06b8c9e26f0eccc1d7 Author: xiangdong huang <[email protected]> AuthorDate: Wed Jun 10 18:32:08 2020 +0800 fix Dependency convergence error in flink-tsfile-connector --- example/flink/pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/example/flink/pom.xml b/example/flink/pom.xml index 308edfb..94f9ad5 100644 --- a/example/flink/pom.xml +++ b/example/flink/pom.xml @@ -35,6 +35,14 @@ <groupId>org.apache.iotdb</groupId> <artifactId>flink-iotdb-connector</artifactId> <version>${project.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> <dependency> <groupId>org.apache.iotdb</groupId>
