You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by me...@apache.org on 2021/03/19 14:52:20 UTC

[hbase-connectors] branch master updated: HBASE-25684: Dependency manage log4j in hbase-connectors (#79)

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

meszibalu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase-connectors.git


The following commit(s) were added to refs/heads/master by this push:
     new fddb433  HBASE-25684: Dependency manage log4j in hbase-connectors (#79)
fddb433 is described below

commit fddb433e07ab520a4c0e593a74842901bd41f598
Author: Tamás Pénzes <pe...@gmail.com>
AuthorDate: Fri Mar 19 15:52:13 2021 +0100

    HBASE-25684: Dependency manage log4j in hbase-connectors (#79)
    
    Added log4j to dependencyManagement in main pom.xml
    
    Signed-off-by: Balazs Meszaros <me...@apache.org>
---
 pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/pom.xml b/pom.xml
index e00ffb7..b877201 100644
--- a/pom.xml
+++ b/pom.xml
@@ -138,6 +138,7 @@
     <hadoop-three.version>3.0.3</hadoop-three.version>
     <hadoop.version>${hadoop-two.version}</hadoop.version>
     <slf4j.version>1.7.25</slf4j.version>
+    <log4j.version>1.2.17</log4j.version>
     <checkstyle.version>8.18</checkstyle.version>
     <maven.checkstyle.version>3.1.0</maven.checkstyle.version>
     <surefire.version>3.0.0-M4</surefire.version>
@@ -192,6 +193,11 @@
         <version>${slf4j.version}</version>
       </dependency>
       <dependency>
+        <groupId>log4j</groupId>
+        <artifactId>log4j</artifactId>
+        <version>${log4j.version}</version>
+      </dependency>
+      <dependency>
         <groupId>org.glassfish</groupId>
         <artifactId>javax.el</artifactId>
         <version>${glassfish.el.version}</version>