You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ps...@apache.org on 2021/12/14 11:02:43 UTC

[hbase-operator-tools] branch master updated: HBASE-26571 Upgrade to log4j 2.16.0 (#96)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4e7fbcf  HBASE-26571 Upgrade to log4j 2.16.0 (#96)
4e7fbcf is described below

commit 4e7fbcf69c4a99ac6f56261bce5e7bdc17db9f5f
Author: Peter Somogyi <ps...@apache.org>
AuthorDate: Tue Dec 14 12:02:36 2021 +0100

    HBASE-26571 Upgrade to log4j 2.16.0 (#96)
    
    Signed-off-by: Guangxu Cheng <gx...@apache.org>
---
 hbase-hbck2/pom.xml | 6 +-----
 hbase-tools/pom.xml | 6 +-----
 pom.xml             | 3 +++
 3 files changed, 5 insertions(+), 10 deletions(-)

diff --git a/hbase-hbck2/pom.xml b/hbase-hbck2/pom.xml
index e3fae81..9e1cafa 100644
--- a/hbase-hbck2/pom.xml
+++ b/hbase-hbck2/pom.xml
@@ -30,10 +30,6 @@
   <artifactId>hbase-hbck2</artifactId>
   <name>Apache HBase - HBCK2</name>
   <description>HBCK for HBase 2+</description>
-  <properties>
-    <hbase-thirdparty.version>2.2.1</hbase-thirdparty.version>
-    <log4j2.version>2.15.0</log4j2.version>
-  </properties>
 
   <build>
     <resources>
@@ -166,7 +162,7 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>4.12</version>
+      <version>${junit.version}</version>
       <scope>test</scope>
     </dependency>
     <!--This is Log4j2!-->
diff --git a/hbase-tools/pom.xml b/hbase-tools/pom.xml
index 8f03864..389c2cc 100644
--- a/hbase-tools/pom.xml
+++ b/hbase-tools/pom.xml
@@ -33,16 +33,12 @@
     <artifactId>hbase-tools</artifactId>
     <name>Apache HBase - HBase Tools</name>
     <description>Utility Maintenance tools for HBase 2+</description>
-    <properties>
-        <hbase-thirdparty.version>2.2.1</hbase-thirdparty.version>
-        <log4j2.version>2.15.0</log4j2.version>
-    </properties>
 
     <dependencies>
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>4.12</version>
+            <version>${junit.version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>
diff --git a/pom.xml b/pom.xml
index e449bc4..97a5fb1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -129,9 +129,12 @@
     <java.min.version>${compileSource}</java.min.version>
     <maven.min.version>3.3.3</maven.min.version>
     <hbase.version>2.4.4</hbase.version>
+    <hbase-thirdparty.version>2.2.1</hbase-thirdparty.version>
+    <log4j2.version>2.16.0</log4j2.version>
     <surefire.provider>surefire-junit47</surefire.provider>
     <test.output.tofile>true</test.output.tofile>
     <checkstyle.version>8.18</checkstyle.version>
+    <junit.version>4.12</junit.version>
     <maven.checkstyle.version>3.0.0</maven.checkstyle.version>
     <hbase.checkstyle.version>2.2.0</hbase.checkstyle.version>
     <enforcer.version>3.0.0-M2</enforcer.version>