You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2019/05/27 10:18:49 UTC

[hbase] branch branch-2.2 updated: HBASE-22478 Add jackson dependency for hbase-http module

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

zhangduo pushed a commit to branch branch-2.2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.2 by this push:
     new de8c234  HBASE-22478 Add jackson dependency for hbase-http module
de8c234 is described below

commit de8c234e0b55da1751a5049f6723c60a16865111
Author: Duo Zhang <zh...@apache.org>
AuthorDate: Mon May 27 14:50:49 2019 +0800

    HBASE-22478 Add jackson dependency for hbase-http module
    
    Signed-off-by: Guanghao Zhang <zg...@apache.org>
---
 hbase-http/pom.xml | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/hbase-http/pom.xml b/hbase-http/pom.xml
index 1d357a0..bfd460e 100644
--- a/hbase-http/pom.xml
+++ b/hbase-http/pom.xml
@@ -55,7 +55,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-remote-resources-plugin</artifactId>
-        <version>1.5</version>
         <executions>
           <execution>
             <id>default</id>
@@ -379,6 +378,11 @@
           <groupId>org.apache.hadoop</groupId>
           <artifactId>hadoop-auth</artifactId>
         </dependency>
+        <dependency>
+          <groupId>org.codehaus.jackson</groupId>
+          <artifactId>jackson-core-asl</artifactId>
+          <version>1.9.13</version>
+        </dependency>
       </dependencies>
       <build>
         <plugins>
@@ -432,6 +436,10 @@
           </exclusions>
           <scope>test</scope>
         </dependency>
+        <dependency>
+          <groupId>com.fasterxml.jackson.core</groupId>
+          <artifactId>jackson-core</artifactId>
+        </dependency>
       </dependencies>
       <build>
         <plugins>