Skip to content

Commit

Permalink
[SPARK-39954][BUILD] Upgrade ASM to 9.3
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?

This PR aims to upgrade ASM to 9.3.

### Why are the changes needed?

This will help us to use Java 19 and to be ready for the future releases.
- https://openjdk.org/projects/jdk/19/ (RC1: Aug 11st, GA: Sep 20th)
- https://asm.ow2.io/versions.html
- https://issues.apache.org/jira/browse/XBEAN-334 Upgrade to ASM 9.3

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Pass the CIs.

Closes apache#37382 from dongjoon-hyun/SPARK-39954.

Authored-by: Dongjoon Hyun <dongjoon@apache.org>
Signed-off-by: Liang-Chi Hsieh <viirya@gmail.com>
  • Loading branch information
dongjoon-hyun authored and viirya committed Aug 3, 2022
1 parent dfcf2a8 commit 932beda
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dev/deps/spark-deps-hadoop-2-hive-2.3
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ tink/1.6.1//tink-1.6.1.jar
transaction-api/1.1//transaction-api-1.1.jar
univocity-parsers/2.9.1//univocity-parsers-2.9.1.jar
velocity/1.5//velocity-1.5.jar
xbean-asm9-shaded/4.20//xbean-asm9-shaded-4.20.jar
xbean-asm9-shaded/4.21//xbean-asm9-shaded-4.21.jar
xercesImpl/2.12.2//xercesImpl-2.12.2.jar
xml-apis/1.4.01//xml-apis-1.4.01.jar
xmlenc/0.52//xmlenc-0.52.jar
Expand Down
2 changes: 1 addition & 1 deletion dev/deps/spark-deps-hadoop-3-hive-2.3
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ transaction-api/1.1//transaction-api-1.1.jar
univocity-parsers/2.9.1//univocity-parsers-2.9.1.jar
velocity/1.5//velocity-1.5.jar
wildfly-openssl/1.0.7.Final//wildfly-openssl-1.0.7.Final.jar
xbean-asm9-shaded/4.20//xbean-asm9-shaded-4.20.jar
xbean-asm9-shaded/4.21//xbean-asm9-shaded-4.21.jar
xz/1.8//xz-1.8.jar
zjsonpatch/0.3.0//zjsonpatch-0.3.0.jar
zookeeper-jute/3.6.2//zookeeper-jute-3.6.2.jar
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@
<dependency>
<groupId>org.apache.xbean</groupId>
<artifactId>xbean-asm9-shaded</artifactId>
<version>4.20</version>
<version>4.21</version>
</dependency>

<!-- Shaded deps marked as provided. These are promoted to compile scope
Expand Down Expand Up @@ -3154,12 +3154,12 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.1</version>
<version>9.3</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>9.1</version>
<version>9.3</version>
</dependency>
</dependencies>
</plugin>
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.3")

addSbtPlugin("io.spray" % "sbt-revolver" % "0.9.1")

libraryDependencies += "org.ow2.asm" % "asm" % "9.1"
libraryDependencies += "org.ow2.asm" % "asm" % "9.3"

libraryDependencies += "org.ow2.asm" % "asm-commons" % "9.1"
libraryDependencies += "org.ow2.asm" % "asm-commons" % "9.3"

addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.8.3")

Expand Down

0 comments on commit 932beda

Please sign in to comment.