You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by xi...@apache.org on 2022/08/22 03:50:38 UTC

[iotdb] branch master updated: Fix pulsar example compile error (#7077)

This is an automated email from the ASF dual-hosted git repository.

xingtanzjr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 700b13533c Fix pulsar example compile error (#7077)
700b13533c is described below

commit 700b13533c2984b7f158e6d4d2cae647cf1af8d2
Author: Haonan <hh...@outlook.com>
AuthorDate: Mon Aug 22 11:50:32 2022 +0800

    Fix pulsar example compile error (#7077)
---
 example/pulsar/pom.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/example/pulsar/pom.xml b/example/pulsar/pom.xml
index 8b64be8f9a..424bbc996b 100644
--- a/example/pulsar/pom.xml
+++ b/example/pulsar/pom.xml
@@ -34,7 +34,14 @@
         <dependency>
             <groupId>org.apache.pulsar</groupId>
             <artifactId>pulsar-client</artifactId>
-            <version>2.6.0</version>
+            <version>2.6.4</version>
+            <!-- exclude guava for avoiding compile error, guava can be found in other module -->
+            <exclusions>
+                <exclusion>
+                    <groupId>com.google.guava</groupId>
+                    <artifactId>guava</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.apache.iotdb</groupId>