Skip to content

Commit

Permalink
Get ASM-7.0 from SNAPSHOT
Browse files Browse the repository at this point in the history
For released asm version we get asm-all.jar which combines all asm
components in single jar. To test ConstantDynamic helper methods
are only available in 7.0 version of asm which is not released yet.
This commit grabs asm-7.0 as well which contains necessary classes
to generate tests for Constant Dynamic

Signed-off-by: Rahil Shah <rahil@ca.ibm.com>
  • Loading branch information
r30shah committed Sep 14, 2018
1 parent f338ff7 commit 71ca4c1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/TestConfig/scripts/tools/getDependencies.pl
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@
fname => 'asm-all.jar',
sha1 => '535f141f6c8fc65986a3469839a852a3266d1025'
);
my %asm_7_0 = (
url => 'https://repository.ow2.org/nexus/content/repositories/snapshots/org/ow2/asm/asm/7.0-beta-SNAPSHOT/asm-7.0-beta-20180911.182645-11.jar',
fname => 'asm-7.0.jar',
sha1 => 'a5cd898ac5f15b99bc6b76167556a19fcea5c757'
);
my %commons_cli = (
url => 'http://central.maven.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar',
fname => 'commons-cli.jar',
Expand Down Expand Up @@ -115,6 +120,7 @@
# Put all dependent jars hash to array to prepare dowloading
my @jars_info = (
\%asm_all,
\%asm_7_0,
\%commons_cli,
\%commons_exec,
\%javassist,
Expand Down

0 comments on commit 71ca4c1

Please sign in to comment.