From 6a34ca24ceb031d45fb9f6ce4847eaeb82774901 Mon Sep 17 00:00:00 2001 From: Andreas Asplund Date: Wed, 11 Apr 2018 15:09:32 +0200 Subject: [PATCH] Restore org.springframework.cglib.core.KeyFactoryCustomizer.class Issue: SPR-15859 --- spring-core/spring-core.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-core/spring-core.gradle b/spring-core/spring-core.gradle index dd190d50c2..4eb3faf008 100644 --- a/spring-core/spring-core.gradle +++ b/spring-core/spring-core.gradle @@ -99,7 +99,8 @@ jar { from(zipTree(cglibRepackJar.archivePath)) { include "org/springframework/cglib/**" exclude "org/springframework/cglib/core/AbstractClassGenerator*.class" - exclude "org/springframework/cglib/core/KeyFactory*.class" + exclude "org/springframework/cglib/core/KeyFactory.class" + exclude "org/springframework/cglib/core/KeyFactory\$*.class" exclude "org/springframework/cglib/core/ReflectUtils*.class" exclude "org/springframework/cglib/proxy/Enhancer*.class" exclude "org/springframework/cglib/proxy/MethodProxy*.class"