From 26f1e05ffc47e26586f232a990d1eb938012af4a Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Fri, 3 Jan 2014 14:14:32 -0800 Subject: [PATCH] Upgrade to CGLIB 3.1 and Objenesis 2.1 Issue: SPR-11226 --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 55c22db2a1..114a7adb62 100644 --- a/build.gradle +++ b/build.gradle @@ -164,12 +164,12 @@ project("spring-build-src") { project("spring-core") { description = "Spring Core" - // As of Spring 4.0, spring-core includes asm 4.2 and repackages cglib 3.0, inlining - // both into the spring-core jar. cglib 3.0 itself depends on asm 4, and is therefore + // As of Spring 4.0, spring-core includes asm 4.2 and repackages cglib 3.1, inlining + // both into the spring-core jar. cglib 3.1 itself depends on asm 4, and is therefore // further transformed by the JarJar task to depend on org.springframework.asm; this // avoids including two different copies of asm unnecessarily. - def cglibVersion = "3.0" - def objenesisVersion = "2.0" + def cglibVersion = "3.1" + def objenesisVersion = "2.1" configurations { jarjar