Skip to content

Commit

Permalink
Fix accidental exclusion of BeanMapEmitter class
Browse files Browse the repository at this point in the history
Closes gh-28110
  • Loading branch information
jhoeller committed Mar 16, 2022
1 parent c4c124b commit c1261f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spring-core/spring-core.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit c1261f2

Please sign in to comment.