HHH-14771 Upgrade to Byte Buddy 1.11.12

This commit is contained in:
Sanne Grinovero 2021-08-05 23:57:52 +01:00 committed by Sanne Grinovero
parent e82861bfb1
commit 4fb18e27e3
2 changed files with 3 additions and 4 deletions

View File

@ -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

View File

@ -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'