[SPARK-35488][BUILD] Upgrade ASM to 7.3.1

### What changes were proposed in this pull request?
This PR aims to upgrade ASM to 7.3.1.

- https://issues.apache.org/jira/browse/XBEAN-323
- https://asm.ow2.io/versions.html

### Why are the changes needed?
ASM 7.3.1 bring following changes

- new V15 constant
- experimental support for PermittedSubtypes and RecordComponent
- bug fixes
- - 317885: SKIP_DEBUG now skips MethodParameters attributes

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

### How was this patch tested?
Ran with the existing UTs

Closes #32634 from vinodkc/br_build_upgrade_asm.

Authored-by: Vinod KC <vinod.kc.in@gmail.com>
Signed-off-by: Kousuke Saruta <sarutak@oss.nttdata.com>
This commit is contained in:
Vinod KC 2021-05-23 02:33:15 +09:00 committed by Kousuke Saruta
parent 0549caf07a
commit 003294ce1d
4 changed files with 7 additions and 7 deletions

View file

@ -234,7 +234,7 @@ threeten-extra/1.5.0//threeten-extra-1.5.0.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-asm7-shaded/4.15//xbean-asm7-shaded-4.15.jar
xbean-asm7-shaded/4.16//xbean-asm7-shaded-4.16.jar
xercesImpl/2.12.0//xercesImpl-2.12.0.jar
xml-apis/1.4.01//xml-apis-1.4.01.jar
xmlenc/0.52//xmlenc-0.52.jar

View file

@ -205,7 +205,7 @@ threeten-extra/1.5.0//threeten-extra-1.5.0.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-asm7-shaded/4.15//xbean-asm7-shaded-4.15.jar
xbean-asm7-shaded/4.16//xbean-asm7-shaded-4.16.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

View file

@ -408,7 +408,7 @@
<dependency>
<groupId>org.apache.xbean</groupId>
<artifactId>xbean-asm7-shaded</artifactId>
<version>4.15</version>
<version>4.16</version>
</dependency>
<!-- Shaded deps marked as provided. These are promoted to compile scope
@ -2858,12 +2858,12 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>7.2</version>
<version>7.3.1</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>7.2</version>
<version>7.3.1</version>
</dependency>
</dependencies>
</plugin>

View file

@ -38,9 +38,9 @@ libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.10.2"
addSbtPlugin("io.spray" % "sbt-revolver" % "0.9.1")
libraryDependencies += "org.ow2.asm" % "asm" % "7.2"
libraryDependencies += "org.ow2.asm" % "asm" % "7.3.1"
libraryDependencies += "org.ow2.asm" % "asm-commons" % "7.2"
libraryDependencies += "org.ow2.asm" % "asm-commons" % "7.3.1"
addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.8.2")