Upgrade to Objenesis 3.2

Closes gh-26714
This commit is contained in:
Juergen Hoeller 2021-03-22 23:11:30 +01:00
parent 41d5048280
commit 5b227e5677
2 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@ apply plugin: "kotlin"
// cglib itself depends on asm and is therefore further transformed by the ShadowJar task to // cglib itself depends on asm and is therefore further transformed by the ShadowJar task to
// depend on org.springframework.asm; this avoids including two different copies of asm. // depend on org.springframework.asm; this avoids including two different copies of asm.
def cglibVersion = "3.3.0" def cglibVersion = "3.3.0"
def objenesisVersion = "3.1" def objenesisVersion = "3.2"
configurations { configurations {
cglib cglib
@ -71,7 +71,7 @@ dependencies {
jar { jar {
reproducibleFileOrder = true reproducibleFileOrder = true
preserveFileTimestamps = false // maybe not necessary here, but good for reproducibility preserveFileTimestamps = false // maybe not necessary here, but good for reproducibility
manifest.attributes["Dependencies"] = "jdk.unsupported" // JBoss modules manifest.attributes["Dependencies"] = "jdk.unsupported" // for WildFly (-> Objenesis 3.2)
// Inline repackaged cglib classes directly into spring-core jar // Inline repackaged cglib classes directly into spring-core jar
dependsOn cglibRepackJar dependsOn cglibRepackJar

View File

@ -1,6 +1,6 @@
/** /**
* Spring's repackaging of * Spring's repackaging of
* <a href="http://objenesis.org">Objenesis 3.0</a> * <a href="http://objenesis.org">Objenesis 3.2</a>
* (with SpringObjenesis entry point; for internal use only). * (with SpringObjenesis entry point; for internal use only).
* *
* <p>This repackaging technique avoids any potential conflicts with * <p>This repackaging technique avoids any potential conflicts with