diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-03-13 10:42:05 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-03-16 08:21:05 +0700 |
commit | 7fab8259c448aa3185bab27e7bc813bc3512b8a3 (patch) | |
tree | f3b24de90a7ef8580035d1c8794189687e457de1 /org.aspectj.ajdt.core | |
parent | 8348a8f6536971b8c1261923f5a5670c97bf1dcb (diff) | |
download | aspectj-7fab8259c448aa3185bab27e7bc813bc3512b8a3.tar.gz aspectj-7fab8259c448aa3185bab27e7bc813bc3512b8a3.zip |
Upgrade to ASM 9.1, delete obsolete ASM binaries
Keep only ASM 2.0 binary because it is still used in UnweavableTest
which uses an old ASM API, e.g. with a ClassWriter constructor which no
longer exists.
Also add JarJar 1.3 library because it is needed by an Ant task in
lib/asm/build.xml.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'org.aspectj.ajdt.core')
-rw-r--r-- | org.aspectj.ajdt.core/src/test/java/org/aspectj/tools/ajc/AjcTestCase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.aspectj.ajdt.core/src/test/java/org/aspectj/tools/ajc/AjcTestCase.java b/org.aspectj.ajdt.core/src/test/java/org/aspectj/tools/ajc/AjcTestCase.java index a24edb804..a1cccba72 100644 --- a/org.aspectj.ajdt.core/src/test/java/org/aspectj/tools/ajc/AjcTestCase.java +++ b/org.aspectj.ajdt.core/src/test/java/org/aspectj/tools/ajc/AjcTestCase.java @@ -93,7 +93,7 @@ public abstract class AjcTestCase extends TestCase { + File.separator + "bcel-verifier.jar" - + File.pathSeparator + ".." + File.separator + "lib" + File.separator + "asm" + File.separator + "asm-8.0.1.renamed.jar" + + File.pathSeparator + ".." + File.separator + "lib" + File.separator + "asm" + File.separator + "asm-9.1.renamed.jar" // When the build machine executes the tests, it is using code built into jars rather than code build into // bin directories. This means for the necessary types to be found we have to put these jars on the classpath: |