You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by mm...@apache.org on 2019/03/28 20:24:41 UTC

[pulsar] branch master updated: fix jcloud shaded in IDEA (#3912)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4a739e5  fix jcloud shaded in IDEA (#3912)
4a739e5 is described below

commit 4a739e5def56551bb873f08d7f1d54cc97d827bb
Author: wpl <12...@qq.com>
AuthorDate: Thu Mar 28 15:24:36 2019 -0500

    fix jcloud shaded in IDEA (#3912)
---
 tiered-storage/jcloud/pom.xml | 2 +-
 tiered-storage/pom.xml        | 5 +++++
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/tiered-storage/jcloud/pom.xml b/tiered-storage/jcloud/pom.xml
index 8827115..57fc36c 100644
--- a/tiered-storage/jcloud/pom.xml
+++ b/tiered-storage/jcloud/pom.xml
@@ -41,7 +41,7 @@
     <dependency>
       <groupId>org.apache.pulsar</groupId>
       <artifactId>jclouds-shaded</artifactId>
-      <version>${project.version}</version>
+      <version>${pulsar.jclouds.shaded.version}</version>
       <exclusions>
         <exclusion>
           <groupId>com.google.code.gson</groupId>
diff --git a/tiered-storage/pom.xml b/tiered-storage/pom.xml
index ca2604c..5b67aa8 100644
--- a/tiered-storage/pom.xml
+++ b/tiered-storage/pom.xml
@@ -32,6 +32,11 @@
   <artifactId>tiered-storage-parent</artifactId>
   <name>Apache Pulsar :: Tiered Storage :: Parent</name>
 
+  <properties>
+    <!-- pin the jclouds-shaded version to make the pulsar build friendly to intellij -->
+    <pulsar.jclouds.shaded.version>2.3.0</pulsar.jclouds.shaded.version>
+  </properties>
+
   <modules>
     <module>jcloud</module>
   </modules>