Skip to content

Commit

Permalink
HHH-14771 Upgrade to Byte Buddy 1.11.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanne committed Aug 20, 2021
1 parent fb3943d commit 60402d1
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
Expand Up @@ -295,9 +295,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
Expand Up @@ -23,7 +23,7 @@ ext {
weldVersion = '3.1.5.Final'

javassistVersion = '3.27.0-GA'
byteBuddyVersion = '1.10.22'
byteBuddyVersion = '1.11.12'

agroalVersion = '1.9'

Expand Down

0 comments on commit 60402d1

Please sign in to comment.