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 27939825445 HBASE-29327 Dependency manage byte-buddy and bump it to
1.15.11 (#7003)
27939825445 is described below
commit 279398254459f296adfee5f1c87a50d4fba5e593
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]>
---
pom.xml | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/pom.xml b/pom.xml
index e6e3c43414c..1099e2e0776 100644
--- a/pom.xml
+++ b/pom.xml
@@ -874,6 +874,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.
@@ -1648,6 +1649,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>