(hbase) branch dependabot/pip/dev-support/flaky-tests/jinja2-3.1.3 created (now 602daf16d21)

2024-01-11 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/pip/dev-support/flaky-tests/jinja2-3.1.3
in repository https://gitbox.apache.org/repos/asf/hbase.git


  at 602daf16d21 Bump jinja2 from 3.1.2 to 3.1.3 in /dev-support/flaky-tests

No new revisions were added by this update.



(hbase) branch branch-2.4 updated: HBASE-28301 IntegrationTestImportTsv fails with UnsupportedOperationException (#5613)

2024-01-11 Thread nihaljain
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/branch-2.4 by this push:
 new 352b013610b HBASE-28301 IntegrationTestImportTsv fails with 
UnsupportedOperationException (#5613)
352b013610b is described below

commit 352b013610b1e59ed74a2968f1f11e392de028d0
Author: Nihal Jain 
AuthorDate: Thu Jan 11 23:44:35 2024 +0530

HBASE-28301 IntegrationTestImportTsv fails with 
UnsupportedOperationException (#5613)

Signed-off-by: Duo Zhang 
Signed-off-by: Peter Somogyi 
(cherry picked from commit a7429a75f22e2228154eb30383fbffee86a2f103)
---
 .../hadoop/hbase/mapreduce/IntegrationTestImportTsv.java   | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
index ec27edc66f4..a7bc42ddc25 100644
--- 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
+++ 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
@@ -144,12 +144,10 @@ public class IntegrationTestImportTsv extends Configured 
implements Tool {
   ToolRunner.run(new LoadIncrementalHFiles(new Configuration(getConf())), 
args));
 
 Table table = null;
-Scan scan = new Scan() {
-  {
-setCacheBlocks(false);
-setCaching(1000);
-  }
-};
+Scan scan = new Scan();
+scan.setCacheBlocks(false);
+scan.setCaching(1000);
+
 try {
   table = util.getConnection().getTable(tableName);
   Iterator resultsIt = table.getScanner(scan).iterator();



(hbase) branch branch-2.5 updated: HBASE-28301 IntegrationTestImportTsv fails with UnsupportedOperationException (#5613)

2024-01-11 Thread nihaljain
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/branch-2.5 by this push:
 new d8309c69eca HBASE-28301 IntegrationTestImportTsv fails with 
UnsupportedOperationException (#5613)
d8309c69eca is described below

commit d8309c69eca556198e21f23f7f5d1e42ddc90554
Author: Nihal Jain 
AuthorDate: Thu Jan 11 23:44:35 2024 +0530

HBASE-28301 IntegrationTestImportTsv fails with 
UnsupportedOperationException (#5613)

Signed-off-by: Duo Zhang 
Signed-off-by: Peter Somogyi 
(cherry picked from commit a7429a75f22e2228154eb30383fbffee86a2f103)
---
 .../hadoop/hbase/mapreduce/IntegrationTestImportTsv.java   | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
index 9d17b3ec976..9a577332524 100644
--- 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
+++ 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
@@ -145,12 +145,10 @@ public class IntegrationTestImportTsv extends Configured 
implements Tool {
   ToolRunner.run(new LoadIncrementalHFiles(new Configuration(getConf())), 
args));
 
 Table table = null;
-Scan scan = new Scan() {
-  {
-setCacheBlocks(false);
-setCaching(1000);
-  }
-};
+Scan scan = new Scan();
+scan.setCacheBlocks(false);
+scan.setCaching(1000);
+
 try {
   table = util.getConnection().getTable(tableName);
   Iterator resultsIt = table.getScanner(scan).iterator();



(hbase) branch branch-2.6 updated: HBASE-28301 IntegrationTestImportTsv fails with UnsupportedOperationException (#5613)

2024-01-11 Thread nihaljain
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/branch-2.6 by this push:
 new feff03fdcd9 HBASE-28301 IntegrationTestImportTsv fails with 
UnsupportedOperationException (#5613)
feff03fdcd9 is described below

commit feff03fdcd9a80affbdd2aead9dd2ef58deecbb3
Author: Nihal Jain 
AuthorDate: Thu Jan 11 23:44:35 2024 +0530

HBASE-28301 IntegrationTestImportTsv fails with 
UnsupportedOperationException (#5613)

Signed-off-by: Duo Zhang 
Signed-off-by: Peter Somogyi 
(cherry picked from commit a7429a75f22e2228154eb30383fbffee86a2f103)
---
 .../hadoop/hbase/mapreduce/IntegrationTestImportTsv.java   | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
index 9d17b3ec976..9a577332524 100644
--- 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
+++ 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
@@ -145,12 +145,10 @@ public class IntegrationTestImportTsv extends Configured 
implements Tool {
   ToolRunner.run(new LoadIncrementalHFiles(new Configuration(getConf())), 
args));
 
 Table table = null;
-Scan scan = new Scan() {
-  {
-setCacheBlocks(false);
-setCaching(1000);
-  }
-};
+Scan scan = new Scan();
+scan.setCacheBlocks(false);
+scan.setCaching(1000);
+
 try {
   table = util.getConnection().getTable(tableName);
   Iterator resultsIt = table.getScanner(scan).iterator();



(hbase) branch branch-2 updated: HBASE-28301 IntegrationTestImportTsv fails with UnsupportedOperationException (#5613)

2024-01-11 Thread nihaljain
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/branch-2 by this push:
 new f714aa2f878 HBASE-28301 IntegrationTestImportTsv fails with 
UnsupportedOperationException (#5613)
f714aa2f878 is described below

commit f714aa2f878f9fbefcd45cd2d9fda62190100e58
Author: Nihal Jain 
AuthorDate: Thu Jan 11 23:44:35 2024 +0530

HBASE-28301 IntegrationTestImportTsv fails with 
UnsupportedOperationException (#5613)

Signed-off-by: Duo Zhang 
Signed-off-by: Peter Somogyi 
(cherry picked from commit a7429a75f22e2228154eb30383fbffee86a2f103)
---
 .../hadoop/hbase/mapreduce/IntegrationTestImportTsv.java   | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
index 9d17b3ec976..9a577332524 100644
--- 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
+++ 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
@@ -145,12 +145,10 @@ public class IntegrationTestImportTsv extends Configured 
implements Tool {
   ToolRunner.run(new LoadIncrementalHFiles(new Configuration(getConf())), 
args));
 
 Table table = null;
-Scan scan = new Scan() {
-  {
-setCacheBlocks(false);
-setCaching(1000);
-  }
-};
+Scan scan = new Scan();
+scan.setCacheBlocks(false);
+scan.setCaching(1000);
+
 try {
   table = util.getConnection().getTable(tableName);
   Iterator resultsIt = table.getScanner(scan).iterator();



(hbase) branch branch-3 updated: HBASE-28301 IntegrationTestImportTsv fails with UnsupportedOperationException (#5613)

2024-01-11 Thread nihaljain
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/branch-3 by this push:
 new d24106bd43b HBASE-28301 IntegrationTestImportTsv fails with 
UnsupportedOperationException (#5613)
d24106bd43b is described below

commit d24106bd43b32c77a7e63cd8ee7cece41429944b
Author: Nihal Jain 
AuthorDate: Thu Jan 11 23:44:35 2024 +0530

HBASE-28301 IntegrationTestImportTsv fails with 
UnsupportedOperationException (#5613)

Signed-off-by: Duo Zhang 
Signed-off-by: Peter Somogyi 
(cherry picked from commit a7429a75f22e2228154eb30383fbffee86a2f103)
---
 .../hadoop/hbase/mapreduce/IntegrationTestImportTsv.java   | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
index 2e9ff827936..e5c1fbed1a5 100644
--- 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
+++ 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
@@ -145,12 +145,10 @@ public class IntegrationTestImportTsv extends Configured 
implements Tool {
   ToolRunner.run(new BulkLoadHFilesTool(getConf()), args));
 
 Table table = null;
-Scan scan = new Scan() {
-  {
-setCacheBlocks(false);
-setCaching(1000);
-  }
-};
+Scan scan = new Scan();
+scan.setCacheBlocks(false);
+scan.setCaching(1000);
+
 try {
   table = util.getConnection().getTable(tableName);
   Iterator resultsIt = table.getScanner(scan).iterator();



(hbase) branch master updated: HBASE-28301 IntegrationTestImportTsv fails with UnsupportedOperationException (#5613)

2024-01-11 Thread nihaljain
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new a7429a75f22 HBASE-28301 IntegrationTestImportTsv fails with 
UnsupportedOperationException (#5613)
a7429a75f22 is described below

commit a7429a75f22e2228154eb30383fbffee86a2f103
Author: Nihal Jain 
AuthorDate: Thu Jan 11 23:44:35 2024 +0530

HBASE-28301 IntegrationTestImportTsv fails with 
UnsupportedOperationException (#5613)

Signed-off-by: Duo Zhang 
Signed-off-by: Peter Somogyi 
---
 .../hadoop/hbase/mapreduce/IntegrationTestImportTsv.java   | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
index 2e9ff827936..e5c1fbed1a5 100644
--- 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
+++ 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestImportTsv.java
@@ -145,12 +145,10 @@ public class IntegrationTestImportTsv extends Configured 
implements Tool {
   ToolRunner.run(new BulkLoadHFilesTool(getConf()), args));
 
 Table table = null;
-Scan scan = new Scan() {
-  {
-setCacheBlocks(false);
-setCaching(1000);
-  }
-};
+Scan scan = new Scan();
+scan.setCacheBlocks(false);
+scan.setCaching(1000);
+
 try {
   table = util.getConnection().getTable(tableName);
   Iterator resultsIt = table.getScanner(scan).iterator();



(hbase-site) branch asf-site updated: INFRA-10751 Empty commit

2024-01-11 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/asf-site by this push:
 new 305f580e23a INFRA-10751 Empty commit
305f580e23a is described below

commit 305f580e23a8267894a92c66a67053de69f599e6
Author: jenkins 
AuthorDate: Thu Jan 11 14:43:59 2024 +

INFRA-10751 Empty commit



(hbase-site) branch asf-site updated: Published site at 8cab5a2dfb79304440d7c92a0d7170cd0f3e0739.

2024-01-11 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/asf-site by this push:
 new 4ef2651ff67 Published site at 8cab5a2dfb79304440d7c92a0d7170cd0f3e0739.
4ef2651ff67 is described below

commit 4ef2651ff67f2755e5bcf70db237a80d2d83d4b3
Author: jenkins 
AuthorDate: Thu Jan 11 14:43:46 2024 +

Published site at 8cab5a2dfb79304440d7c92a0d7170cd0f3e0739.
---
 acid-semantics.html  |  2 +-
 apache_hbase_reference_guide.pdf |  4 +-
 book.html|  2 +-
 bulk-loads.html  |  2 +-
 checkstyle-aggregate.html| 18 
 coc.html |  2 +-
 dependencies.html|  2 +-
 dependency-convergence.html  |  2 +-
 dependency-info.html |  2 +-
 dependency-management.html   | 97 +---
 downloads.html   |  2 +-
 export_control.html  |  2 +-
 index.html   |  2 +-
 issue-management.html|  2 +-
 licenses.html|  2 +-
 mailing-lists.html   |  2 +-
 metrics.html |  2 +-
 old_news.html|  2 +-
 plugin-management.html   |  2 +-
 plugins.html |  2 +-
 poweredbyhbase.html  |  2 +-
 project-info.html|  2 +-
 project-reports.html |  2 +-
 pseudo-distributed.html  |  2 +-
 replication.html |  2 +-
 resources.html   |  2 +-
 scm.html |  2 +-
 sponsors.html|  2 +-
 summary.html |  2 +-
 supportingprojects.html  |  2 +-
 team.html|  2 +-
 31 files changed, 91 insertions(+), 84 deletions(-)

diff --git a/acid-semantics.html b/acid-semantics.html
index cc2bc8dee12..922d68be308 100644
--- a/acid-semantics.html
+++ b/acid-semantics.html
@@ -464,7 +464,7 @@
 
 Copyright 20072024
 https://www.apache.org/;>The Apache Software Foundation.
-All rights reserved.Last 
Published: 2024-01-10
+All rights reserved.Last 
Published: 2024-01-11
 
 
 http://maven.apache.org/; title="Built by Maven" class="poweredBy">
diff --git a/apache_hbase_reference_guide.pdf b/apache_hbase_reference_guide.pdf
index 62ddd4774da..9658d1f6141 100644
--- a/apache_hbase_reference_guide.pdf
+++ b/apache_hbase_reference_guide.pdf
@@ -5,8 +5,8 @@
 /Author (Apache HBase Team)
 /Creator (Asciidoctor PDF 2.0.6, based on Prawn 2.4.0)
 /Producer (Apache HBase Team)
-/ModDate (D:20240110142941+00'00')
-/CreationDate (D:20240110144114+00'00')
+/ModDate (D:2024042939+00'00')
+/CreationDate (D:2024044106+00'00')
 >>
 endobj
 2 0 obj
diff --git a/book.html b/book.html
index d9a200340ae..c91b38eccef 100644
--- a/book.html
+++ b/book.html
@@ -49069,7 +49069,7 @@ 
org/apache/hadoop/hbase/security/access/AccessControlClient.revoke:(Lorg/apache/
 
 
 Version 4.0.0-alpha-1-SNAPSHOT
-Last updated 2024-01-10 14:29:41 UTC
+Last updated 2024-01-11 14:29:39 UTC
 
 
 

(hbase) branch branch-2 updated: HBASE-28304 Add hbase-shaded-testing-util version to dependencyManagement (#5618)

2024-01-11 Thread bbeaudreault
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/branch-2 by this push:
 new ef6a3a0ed1b HBASE-28304 Add hbase-shaded-testing-util version to 
dependencyManagement (#5618)
ef6a3a0ed1b is described below

commit ef6a3a0ed1bcd8fac217c86fae23d466c15bc830
Author: Bryan Beaudreault 
AuthorDate: Thu Jan 11 07:54:10 2024 -0500

HBASE-28304 Add hbase-shaded-testing-util version to dependencyManagement 
(#5618)

Signed-off-by: Duo Zhang 
---
 hbase-shaded/hbase-shaded-testing-util-tester/pom.xml | 1 -
 pom.xml   | 5 +
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml 
b/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml
index ac8f241692a..3ca535f5942 100644
--- a/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml
+++ b/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml
@@ -81,7 +81,6 @@
 
   org.apache.hbase
   hbase-shaded-testing-util
-  ${project.version}
   test
 
 
diff --git a/pom.xml b/pom.xml
index 593830b66c6..72402467c9c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1043,6 +1043,11 @@
 hbase-shaded-mapreduce
 ${project.version}
   
+  
+org.apache.hbase
+hbase-shaded-testing-util
+${project.version}
+  
   
 org.apache.hbase
 hbase-asyncfs



(hbase) branch branch-2.5 updated: HBASE-28304 Add hbase-shaded-testing-util version to dependencyManagement (#5618)

2024-01-11 Thread bbeaudreault
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/branch-2.5 by this push:
 new 93a0a1236fe HBASE-28304 Add hbase-shaded-testing-util version to 
dependencyManagement (#5618)
93a0a1236fe is described below

commit 93a0a1236fecceb37061f0f6adee56a8d2ff02a3
Author: Bryan Beaudreault 
AuthorDate: Thu Jan 11 07:54:10 2024 -0500

HBASE-28304 Add hbase-shaded-testing-util version to dependencyManagement 
(#5618)

Signed-off-by: Duo Zhang 
---
 hbase-shaded/hbase-shaded-testing-util-tester/pom.xml | 1 -
 pom.xml   | 5 +
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml 
b/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml
index ac8f241692a..3ca535f5942 100644
--- a/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml
+++ b/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml
@@ -81,7 +81,6 @@
 
   org.apache.hbase
   hbase-shaded-testing-util
-  ${project.version}
   test
 
 
diff --git a/pom.xml b/pom.xml
index 8622e9b26e6..d589ae858dc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1037,6 +1037,11 @@
 hbase-shaded-mapreduce
 ${project.version}
   
+  
+org.apache.hbase
+hbase-shaded-testing-util
+${project.version}
+  
   
 org.apache.hbase
 hbase-asyncfs



(hbase) branch branch-2.6 updated: HBASE-28304 Add hbase-shaded-testing-util version to dependencyManagement (#5618)

2024-01-11 Thread bbeaudreault
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/branch-2.6 by this push:
 new 04e64be5b1d HBASE-28304 Add hbase-shaded-testing-util version to 
dependencyManagement (#5618)
04e64be5b1d is described below

commit 04e64be5b1d36b31d481c9f703619fc6a0750b64
Author: Bryan Beaudreault 
AuthorDate: Thu Jan 11 07:54:10 2024 -0500

HBASE-28304 Add hbase-shaded-testing-util version to dependencyManagement 
(#5618)

Signed-off-by: Duo Zhang 
---
 hbase-shaded/hbase-shaded-testing-util-tester/pom.xml | 1 -
 pom.xml   | 5 +
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml 
b/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml
index ac8f241692a..3ca535f5942 100644
--- a/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml
+++ b/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml
@@ -81,7 +81,6 @@
 
   org.apache.hbase
   hbase-shaded-testing-util
-  ${project.version}
   test
 
 
diff --git a/pom.xml b/pom.xml
index f872d6af9eb..ec5b4e6fabb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1043,6 +1043,11 @@
 hbase-shaded-mapreduce
 ${project.version}
   
+  
+org.apache.hbase
+hbase-shaded-testing-util
+${project.version}
+  
   
 org.apache.hbase
 hbase-asyncfs



(hbase) branch branch-3 updated: HBASE-28304 Add hbase-shaded-testing-util version to dependencyManagement (#5618)

2024-01-11 Thread bbeaudreault
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/branch-3 by this push:
 new c8699b5258e HBASE-28304 Add hbase-shaded-testing-util version to 
dependencyManagement (#5618)
c8699b5258e is described below

commit c8699b5258efbada54616e61f8bed8bf2aa2bff3
Author: Bryan Beaudreault 
AuthorDate: Thu Jan 11 07:54:10 2024 -0500

HBASE-28304 Add hbase-shaded-testing-util version to dependencyManagement 
(#5618)

Signed-off-by: Duo Zhang 
---
 hbase-shaded/hbase-shaded-testing-util-tester/pom.xml | 1 -
 pom.xml   | 5 +
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml 
b/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml
index 928a3276df6..441d38ccd47 100644
--- a/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml
+++ b/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml
@@ -81,7 +81,6 @@
 
   org.apache.hbase
   hbase-shaded-testing-util
-  ${project.version}
   test
 
   
diff --git a/pom.xml b/pom.xml
index fc42100ff41..abd2e042410 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1278,6 +1278,11 @@
 hbase-shaded-mapreduce
 ${project.version}
   
+  
+org.apache.hbase
+hbase-shaded-testing-util
+${project.version}
+  
   
 org.apache.hbase
 hbase-asyncfs



(hbase) branch master updated: HBASE-28304 Add hbase-shaded-testing-util version to dependencyManagement (#5618)

2024-01-11 Thread bbeaudreault
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 8cab5a2dfb7 HBASE-28304 Add hbase-shaded-testing-util version to 
dependencyManagement (#5618)
8cab5a2dfb7 is described below

commit 8cab5a2dfb79304440d7c92a0d7170cd0f3e0739
Author: Bryan Beaudreault 
AuthorDate: Thu Jan 11 07:54:10 2024 -0500

HBASE-28304 Add hbase-shaded-testing-util version to dependencyManagement 
(#5618)

Signed-off-by: Duo Zhang 
---
 hbase-shaded/hbase-shaded-testing-util-tester/pom.xml | 1 -
 pom.xml   | 5 +
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml 
b/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml
index 928a3276df6..441d38ccd47 100644
--- a/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml
+++ b/hbase-shaded/hbase-shaded-testing-util-tester/pom.xml
@@ -81,7 +81,6 @@
 
   org.apache.hbase
   hbase-shaded-testing-util
-  ${project.version}
   test
 
   
diff --git a/pom.xml b/pom.xml
index 674c211..a59379f8dc9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1284,6 +1284,11 @@
 hbase-shaded-mapreduce
 ${project.version}
   
+  
+org.apache.hbase
+hbase-shaded-testing-util
+${project.version}
+  
   
 org.apache.hbase
 hbase-asyncfs