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

[iotdb] 01/01: Fix pulsar example compile error

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

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

commit 4c1b442e0e8521d861e30a48bb9b82fca2263a41
Author: HTHou <hh...@outlook.com>
AuthorDate: Mon Aug 22 09:56:18 2022 +0800

    Fix pulsar example compile error
---
 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>