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 9cb234301f3 HBASE-29327 Dependency manage byte-buddy and bump it to 
1.15.11 (#7003) (#7024)
9cb234301f3 is described below

commit 9cb234301f3e14005057cbaaf5d6c90454090af9
Author: Nihal Jain <[email protected]>
AuthorDate: Tue May 27 15:43:42 2025 +0530

    HBASE-29327 Dependency manage byte-buddy and bump it to 1.15.11 (#7003) 
(#7024)
    
    * This change is required for being able to handle recent Java bytecodes
    * Move to latest version which works with maven-shade-plugin 3.6.0
    
    Signed-off-by: Istvan Toth <[email protected]>
    
    (cherry picked from commit 279398254459f296adfee5f1c87a50d4fba5e593)
---
 pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/pom.xml b/pom.xml
index 32dc0546dd6..316806fcbc3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -603,6 +603,7 @@
     <opentelemetry-javaagent.version>2.15.0</opentelemetry-javaagent.version>
     <log4j2.version>2.17.2</log4j2.version>
     <mockito.version>4.11.0</mockito.version>
+    <byte-buddy.version>1.15.11</byte-buddy.version>
     <!--Internally we use a different version of protobuf. See 
hbase-protocol-shaded-->
     <external.protobuf.groupid>com.google.protobuf</external.protobuf.groupid>
     <external.protobuf.version>2.5.0</external.protobuf.version>
@@ -1372,6 +1373,16 @@
         <artifactId>hamcrest-library</artifactId>
         <version>${hamcrest.version}</version>
       </dependency>
+      <dependency>
+        <groupId>net.bytebuddy</groupId>
+        <artifactId>byte-buddy</artifactId>
+        <version>${byte-buddy.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>net.bytebuddy</groupId>
+        <artifactId>byte-buddy-agent</artifactId>
+        <version>${byte-buddy.version}</version>
+      </dependency>
       <dependency>
         <groupId>org.mockito</groupId>
         <artifactId>mockito-bom</artifactId>

Reply via email to