Skip to content

Commit c1261f2

Browse files
committed
Fix accidental exclusion of BeanMapEmitter class
Closes gh-28110
1 parent c4c124b commit c1261f2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-core/spring-core.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ jar {
7676
dependsOn cglibRepackJar
7777
from(zipTree(cglibRepackJar.archivePath)) {
7878
include "org/springframework/cglib/**"
79-
exclude "org/springframework/cglib/beans/BeanMap*.class"
79+
exclude "org/springframework/cglib/beans/BeanMap.class"
80+
exclude "org/springframework/cglib/beans/BeanMap\$*.class"
8081
exclude "org/springframework/cglib/core/AbstractClassGenerator*.class"
8182
exclude "org/springframework/cglib/core/AsmApi*.class"
8283
exclude "org/springframework/cglib/core/KeyFactory.class"

0 commit comments

Comments
 (0)