Skip to content

Commit

Permalink
Update asm versions to 9.6
Browse files Browse the repository at this point in the history
This was split off from other `third_party/` changes in #20996

Work towards: #20845

PiperOrigin-RevId: 601414897
Change-Id: I480e8af634a265e2b6a735272bf3df59e0041eee
  • Loading branch information
hvadehra authored and copybara-github committed Jan 25, 2024
1 parent facb136 commit c03f373
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions third_party/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -93,35 +93,35 @@ java_library(
distrib_java_import(
name = "asm",
enable_distributions = ["debian"],
jars = ["asm/asm-9.4.jar"],
srcjar = "asm/asm-9.4-sources.jar",
jars = ["asm/asm-9.6.jar"],
srcjar = "asm/asm-9.6-sources.jar",
)

java_import(
name = "asm-analysis",
jars = ["asm/asm-analysis-9.4.jar"],
srcjar = "asm/asm-analysis-9.4-sources.jar",
jars = ["asm/asm-analysis-9.6.jar"],
srcjar = "asm/asm-analysis-9.6-sources.jar",
runtime_deps = [":asm-tree"],
)

java_import(
name = "asm-commons",
jars = ["asm/asm-commons-9.4.jar"],
srcjar = "asm/asm-commons-9.4-sources.jar",
jars = ["asm/asm-commons-9.6.jar"],
srcjar = "asm/asm-commons-9.6-sources.jar",
runtime_deps = [":asm-tree"],
)

java_import(
name = "asm-tree",
jars = ["asm/asm-tree-9.4.jar"],
srcjar = "asm/asm-tree-9.4-sources.jar",
jars = ["asm/asm-tree-9.6.jar"],
srcjar = "asm/asm-tree-9.6-sources.jar",
runtime_deps = [":asm"],
)

java_import(
name = "asm-util",
jars = ["asm/asm-util-9.4.jar"],
srcjar = "asm/asm-util-9.4-sources.jar",
jars = ["asm/asm-util-9.6.jar"],
srcjar = "asm/asm-util-9.6-sources.jar",
runtime_deps = [":asm-tree"],
)

Expand Down

0 comments on commit c03f373

Please sign in to comment.