Upgrade JarJar to version 1.3

JarJar 1.3 now uses ASM 4 in order to be compatible with Java 7
'invokedynamic' instructions. This is not an immediate concern for
the classes that we use JarJar to repackage and transform, but is a
timely upgrade in anticipation of the subsequent commits in which we
upgrade Spring's own dependency on ASM from 2.2.3 to 4.0 and Spring's
dependency on CGLIB from 2.2 to 3.0 (which in turn depends on ASM 4.0).

See https://code.google.com/p/jarjar/wiki/ChangeLog

Issue: SPR-9669
This commit is contained in:
Chris Beams
2012-08-10 00:30:54 +02:00
parent 6249539426
commit 69a392981e

View File

@@ -98,7 +98,7 @@ project("spring-asm") {
}
dependencies {
asm "asm:asm:${asmVersion}@jar", "asm:asm-commons:${asmVersion}@jar"
jarjar 'com.googlecode.jarjar:jarjar:1.1'
jarjar 'com.googlecode.jarjar:jarjar:1.3'
}
task repackageAsm(type: Jar) { jar ->