HHH-14463 Upgrade to ByteBuddy 1.10.21: OOB support for JDK17
This commit is contained in:
parent
e38df7ed59
commit
e61eff2913
|
@ -291,9 +291,9 @@ test {
|
||||||
jvmArgs '-XX:+StartAttachListener'
|
jvmArgs '-XX:+StartAttachListener'
|
||||||
}
|
}
|
||||||
|
|
||||||
// Enable the experimental features of ByteBuddy with JDK 15+
|
// Enable the experimental features of ByteBuddy with JDK 18+
|
||||||
test {
|
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. " +
|
logger.warn( "The version of Java bytecode that will be tested is not supported by Bytebuddy by default. " +
|
||||||
" Setting 'net.bytebuddy.experimental=true'." )
|
" Setting 'net.bytebuddy.experimental=true'." )
|
||||||
systemProperty 'net.bytebuddy.experimental', true
|
systemProperty 'net.bytebuddy.experimental', true
|
||||||
|
|
|
@ -23,7 +23,7 @@ ext {
|
||||||
weldVersion = '3.1.5.Final'
|
weldVersion = '3.1.5.Final'
|
||||||
|
|
||||||
javassistVersion = '3.27.0-GA'
|
javassistVersion = '3.27.0-GA'
|
||||||
byteBuddyVersion = '1.10.17'
|
byteBuddyVersion = '1.10.21'
|
||||||
|
|
||||||
agroalVersion = '1.9'
|
agroalVersion = '1.9'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue