Skip to content

Commit 072b2d6

Browse files
authored
HADOOP-19653. Bump ByteBuddy 1.17.6 and ASM 9.8 to support Java 25 bytecode (#7879) Contributed by Pan Cheng.
* Bump ByteBuddy 1.17.6 and ASM 9.8 to support Java 25 bytecode Reviewed-by: Istvan Toth <[email protected]> Signed-off-by: Shilun Fan <[email protected]>
1 parent 818e3f0 commit 072b2d6

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

hadoop-project/pom.xml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
<netty4.version>4.1.118.Final</netty4.version>
147147
<snappy-java.version>1.1.10.4</snappy-java.version>
148148
<lz4-java.version>1.7.1</lz4-java.version>
149-
<byte-buddy.version>1.15.11</byte-buddy.version>
149+
<byte-buddy.version>1.17.6</byte-buddy.version>
150150

151151
<!-- Maven protoc compiler -->
152152
<protobuf-maven-plugin.version>0.5.1</protobuf-maven-plugin.version>
@@ -2219,6 +2219,22 @@
22192219
<groupId>org.apache.maven.plugins</groupId>
22202220
<artifactId>maven-shade-plugin</artifactId>
22212221
<version>${maven-shade-plugin.version}</version>
2222+
<dependencies>
2223+
<!--
2224+
TODO: Remove ASM version management once upstream change released
2225+
https://github.com/apache/maven-shade-plugin/pull/744
2226+
-->
2227+
<dependency>
2228+
<groupId>org.ow2.asm</groupId>
2229+
<artifactId>asm</artifactId>
2230+
<version>9.8</version>
2231+
</dependency>
2232+
<dependency>
2233+
<groupId>org.ow2.asm</groupId>
2234+
<artifactId>asm-commons</artifactId>
2235+
<version>9.8</version>
2236+
</dependency>
2237+
</dependencies>
22222238
</plugin>
22232239
<plugin>
22242240
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)