HHH-14463 Upgrade to ByteBuddy 1.10.21: OOB support for JDK17

This commit is contained in:
Sanne Grinovero 2021-02-23 13:24:31 +00:00 committed by Yoann Rodière
parent e38df7ed59
commit e61eff2913
No known key found for this signature in database
GPG Key ID: B8D049359DC35ABC
2 changed files with 3 additions and 3 deletions

View File

@ -291,9 +291,9 @@ test {
jvmArgs '-XX:+StartAttachListener'
}
// Enable the experimental features of ByteBuddy with JDK 15+
// Enable the experimental features of ByteBuddy with JDK 18+
test {
if ( gradle.ext.javaVersions.test.release.asInt() >= 15 ) {
if ( gradle.ext.javaVersions.test.release.asInt() >= 18 ) {
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,7 +23,7 @@ ext {
weldVersion = '3.1.5.Final'
javassistVersion = '3.27.0-GA'
byteBuddyVersion = '1.10.17'
byteBuddyVersion = '1.10.21'
agroalVersion = '1.9'