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
master
Chris Beams 12 years ago
parent 6249539426
commit 69a392981e
  1. 2
      build.gradle

@ -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 ->

Loading…
Cancel
Save