[KYUUBI #7164] Bump Byte Buddy 1.17.6

### Why are the changes needed?

Support JDK 25

Full Release Notes: https://github.com/raphw/byte-buddy/releases

### How was this patch tested?

Pass GHA.

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes #7164 from pan3793/bytebuddy-1.17.6.

Closes #7164

9d4f45a8c [Cheng Pan] Revert "Bump maven shade plugin 3.6.0"
d3dc66862 [Cheng Pan] upgrade asm for maven-shade-plugin
9afe01915 [Cheng Pan] Bump maven shade plugin 3.6.0
1b8a99d71 [Cheng Pan] Bump Byte Buddy 1.17.6

Authored-by: Cheng Pan <chengpan@apache.org>
Signed-off-by: Cheng Pan <chengpan@apache.org>
This commit is contained in:
Cheng Pan 2025-08-08 01:22:29 +08:00
parent b31663f569
commit 6eb24bc47a
No known key found for this signature in database
GPG Key ID: 8001952629BCC75D

18
pom.xml
View File

@ -127,7 +127,7 @@
<antlr.st4.version>4.3.4</antlr.st4.version>
<apache.archive.dist>https://archive.apache.org/dist</apache.archive.dist>
<atlas.version>2.3.0</atlas.version>
<byte-buddy.version>1.14.15</byte-buddy.version>
<byte-buddy.version>1.17.6</byte-buddy.version>
<bouncycastle.version>1.78</bouncycastle.version>
<codahale.metrics.version>4.2.30</codahale.metrics.version>
<commons-cli.version>1.5.0</commons-cli.version>
@ -1572,6 +1572,22 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.plugin.shade.version}</version>
<dependencies>
<!--
TODO: Remove ASM version management once upstream change released
https://github.com/apache/maven-shade-plugin/pull/744
-->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.8</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>9.8</version>
</dependency>
</dependencies>
</plugin>
<plugin>