Skip to content

Commit

Permalink
HHH-14707 Upgrade to Byte Buddy 1.11.8
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere authored and Sanne committed Jul 16, 2021
1 parent 0a16e34 commit e4199de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gradle/java-module.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gradle/libraries.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down

0 comments on commit e4199de

Please sign in to comment.