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:23:30 UTC

[pulsar] branch master updated: Include java-xmlbuilder in tiered-storage-jcloud NAR (#3928) (#3929)

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 625649f  Include java-xmlbuilder in tiered-storage-jcloud NAR (#3928) (#3929)
625649f is described below

commit 625649fb0a1de2cfc39b889dec411e412aefca73
Author: Steve M. Kim <ch...@gmail.com>
AuthorDate: Thu Mar 28 15:23:23 2019 -0500

    Include java-xmlbuilder in tiered-storage-jcloud NAR (#3928) (#3929)
    
    In the POM file for tiered-storage-jcloud, the dependency on
    com.jamesmurty.utils/java-xmlbuilder was marked with test scope, but in
    fact this dependency is needed during normal use. This commit changes
    the POM file so that the java-xmlbuilder dependency is packaged in the
    NAR file.
---
 tiered-storage/jcloud/pom.xml | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/tiered-storage/jcloud/pom.xml b/tiered-storage/jcloud/pom.xml
index d46f4e0..8827115 100644
--- a/tiered-storage/jcloud/pom.xml
+++ b/tiered-storage/jcloud/pom.xml
@@ -74,6 +74,11 @@
       <artifactId>aws-java-sdk-core</artifactId>
     </dependency>
     <dependency>
+      <groupId>com.jamesmurty.utils</groupId>
+      <artifactId>java-xmlbuilder</artifactId>
+      <version>1.1</version>
+    </dependency>
+    <dependency>
       <groupId>org.apache.pulsar</groupId>
       <artifactId>managed-ledger-original</artifactId>
       <version>${project.version}</version>
@@ -85,12 +90,6 @@
          however it will cause test failures. bring following dependencies back for testing.
          all these should be gone once we introduce NAR package for offloaders. -->
     <dependency>
-      <groupId>com.jamesmurty.utils</groupId>
-      <artifactId>java-xmlbuilder</artifactId>
-      <version>1.1</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
       <groupId>net.iharder</groupId>
       <artifactId>base64</artifactId>
       <version>2.3.8</version>