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:32 UTC

[iotdb] branch fix_pulsar_example created (now 4c1b442e0e)

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

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


      at 4c1b442e0e Fix pulsar example compile error

This branch includes the following new commits:

     new 4c1b442e0e Fix pulsar example compile error

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by ha...@apache.org.
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>