HHH-14771 Upgrade to Byte Buddy 1.11.12
This commit is contained in:
parent
e82861bfb1
commit
4fb18e27e3
|
@ -291,9 +291,9 @@ test {
|
|||
systemProperty 'file.encoding', 'UTF-8'
|
||||
}
|
||||
|
||||
// Enable the experimental features of ByteBuddy with JDK 15+
|
||||
// Enable the experimental features of ByteBuddy with JDK 19+
|
||||
test {
|
||||
if ( gradle.ext.javaVersions.test.release.asInt() >= 15 ) {
|
||||
if ( gradle.ext.javaVersions.test.release.asInt() >= 19 ) {
|
||||
logger.warn( "The version of Java bytecode that will be tested is not supported by Bytebuddy by default. " +
|
||||
" Setting 'net.bytebuddy.experimental=true'." )
|
||||
systemProperty 'net.bytebuddy.experimental', true
|
||||
|
|
|
@ -23,8 +23,7 @@ ext {
|
|||
weldVersion = '3.1.8.Final'
|
||||
|
||||
javassistVersion = '3.27.0-GA'
|
||||
byteBuddyVersion = '1.10.7'
|
||||
|
||||
byteBuddyVersion = '1.11.12'
|
||||
|
||||
geolatteVersion = '1.3.0'
|
||||
|
||||
|
|
Loading…
Reference in New Issue