HHH-14707 Upgrade to Byte Buddy 1.11.8

This commit is contained in:
Yoann Rodière 2021-07-05 15:29:43 +02:00 committed by Sanne Grinovero
parent 0a16e341c9
commit e4199decb5
2 changed files with 3 additions and 3 deletions

View File

@ -294,9 +294,9 @@ test {
jvmArgs '-XX:+StartAttachListener'
}
// Enable the experimental features of ByteBuddy with JDK 18+
// Enable the experimental features of ByteBuddy with JDK 19+
test {
if ( gradle.ext.javaVersions.test.release.asInt() >= 18 ) {
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

View File

@ -25,7 +25,7 @@ ext {
jakartaWeldVersion = '4.0.1.SP1'
javassistVersion = '3.27.0-GA'
byteBuddyVersion = '1.10.22'
byteBuddyVersion = '1.11.8'
agroalVersion = '1.9'