Browse Source

Fix accidental exclusion of BeanMapEmitter class

Closes gh-28110
pull/27953/head
Juergen Hoeller 4 years ago
parent
commit
c1261f2860
  1. 3
      spring-core/spring-core.gradle

3
spring-core/spring-core.gradle

@ -76,7 +76,8 @@ jar { @@ -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"

Loading…
Cancel
Save