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

commit 18ee7b715a300893a8fb9358311bc014854919be
Author: Nihal Jain <[email protected]>
AuthorDate: Fri May 23 18:03:57 2025 +0530

    HBASE-29327 Dependency manage byte-buddy and bump it to 1.15.11 (#7003)
    
    * 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 b3733a3a338..a885281b892 100644
--- a/pom.xml
+++ b/pom.xml
@@ -850,6 +850,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>
     <!--
       Version of protobuf that hbase uses internally (we shade our pb) Must 
match what is out
       in hbase-thirdparty include.
@@ -1613,6 +1614,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