From c1261f2860176bf3091e51b772fa35bf558d38bb Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Wed, 16 Mar 2022 11:20:49 +0100 Subject: [PATCH] Fix accidental exclusion of BeanMapEmitter class Closes gh-28110 --- 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 69f78fc7306..bfa3a423b52 100644 --- a/spring-core/spring-core.gradle +++ b/spring-core/spring-core.gradle @@ -76,7 +76,8 @@ jar { dependsOn cglibRepackJar from(zipTree(cglibRepackJar.archivePath)) { include "org/springframework/cglib/**" - exclude "org/springframework/cglib/beans/BeanMap*.class" + exclude "org/springframework/cglib/beans/BeanMap.class" + exclude "org/springframework/cglib/beans/BeanMap\$*.class" exclude "org/springframework/cglib/core/AbstractClassGenerator*.class" exclude "org/springframework/cglib/core/AsmApi*.class" exclude "org/springframework/cglib/core/KeyFactory.class"