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

taklwu 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 7c9e30e  HBASE-29583 Fix Shading issue with JDK17 (#150)
7c9e30e is described below

commit 7c9e30e36583d71d074fbc2b7fbd6d1d959c4d66
Author: richardantal <[email protected]>
AuthorDate: Thu Sep 11 19:30:30 2025 +0200

    HBASE-29583 Fix Shading issue with JDK17 (#150)
    
    Also bump version for de.thetaphi:forbiddenapis
    
    Co-authored-by: Richard Antal <[email protected]>
    
    Signed-off-by: Tak Lon (Stephen) Wu <[email protected]>
    Signed-off-by: Dávid Paksy <[email protected]>
    Signed-off-by: Istvan Toth <[email protected]>
    Signed-off-by: Nihal Jain <[email protected]>
    Signed-off-by: Duo Zhang <[email protected]>
    Reviewed-by: Amina Dinari <aminadinari19>
---
 hbase-hbck2/pom.xml          | 3 +--
 hbase-table-reporter/pom.xml | 1 -
 hbase-tools/pom.xml          | 1 -
 pom.xml                      | 6 ++++++
 4 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/hbase-hbck2/pom.xml b/hbase-hbck2/pom.xml
index 1d57225..69af92e 100644
--- a/hbase-hbck2/pom.xml
+++ b/hbase-hbck2/pom.xml
@@ -183,7 +183,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-shade-plugin</artifactId>
-        <version>3.2.0</version>
         <executions>
           <execution>
             <goals>
@@ -246,7 +245,7 @@
       <plugin>
         <groupId>de.thetaphi</groupId>
         <artifactId>forbiddenapis</artifactId>
-        <version>2.6</version>
+        <version>3.9</version>
         <configuration>
           <signatures>org.apache.hadoop.hbase.MetaTableAccessor</signatures>
         </configuration>
diff --git a/hbase-table-reporter/pom.xml b/hbase-table-reporter/pom.xml
index 64cdfd1..f8d14c2 100644
--- a/hbase-table-reporter/pom.xml
+++ b/hbase-table-reporter/pom.xml
@@ -89,7 +89,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-shade-plugin</artifactId>
-        <version>3.1.1</version>
         <executions>
           <execution>
             <goals>
diff --git a/hbase-tools/pom.xml b/hbase-tools/pom.xml
index 55ef075..f9d94e8 100644
--- a/hbase-tools/pom.xml
+++ b/hbase-tools/pom.xml
@@ -155,7 +155,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-shade-plugin</artifactId>
-        <version>3.2.0</version>
         <executions>
           <execution>
             <goals>
diff --git a/pom.xml b/pom.xml
index caa032a..e786a74 100644
--- a/pom.xml
+++ b/pom.xml
@@ -136,6 +136,7 @@
     <checkstyle.version>8.45.1</checkstyle.version>
     <junit.version>4.12</junit.version>
     <maven.checkstyle.version>3.2.1</maven.checkstyle.version>
+    <maven-shade-plugin.version>3.6.0</maven-shade-plugin.version>
     <hbase.checkstyle.version>2.5.0</hbase.checkstyle.version>
     <enforcer.version>3.0.0-M2</enforcer.version>
     <extra.enforcer.version>1.0-beta-9</extra.enforcer.version>
@@ -218,6 +219,11 @@
             <compilerArgument>-Xlint:-options</compilerArgument>
           </configuration>
         </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-shade-plugin</artifactId>
+          <version>${maven-shade-plugin.version}</version>
+        </plugin>
         <plugin>
           <groupId>org.codehaus.mojo</groupId>
           <artifactId>build-helper-maven-plugin</artifactId>

Reply via email to