HHH-17754 Upgrade to Byte Buddy 1.14.12

This commit is contained in:
Sanne Grinovero 2024-02-19 17:43:11 +00:00 committed by Yoann Rodière
parent 9bb15727e4
commit af6edebb92
2 changed files with 6 additions and 6 deletions

10
Jenkinsfile vendored
View File

@ -49,11 +49,11 @@ stage('Configure') {
new BuildEnvironment( testJdkVersion: '20', testJdkLauncherArgs: '--enable-preview' ),
new BuildEnvironment( testJdkVersion: '21', testJdkLauncherArgs: '--enable-preview' ),
new BuildEnvironment( testJdkVersion: '22', testJdkLauncherArgs: '--enable-preview' ),
// The following JDKs aren't supported by Hibernate ORM out-of-the box yet:
// they require the use of -Dnet.bytebuddy.experimental=true.
// Make sure to remove that argument as soon as possible
// -- generally that requires upgrading bytebuddy after the JDK goes GA.
new BuildEnvironment( testJdkVersion: '23', testJdkLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true' )
new BuildEnvironment( testJdkVersion: '23', testJdkLauncherArgs: '--enable-preview' )
// The following JDKs aren't supported by Hibernate ORM out-of-the box yet:
// they require the use of -Dnet.bytebuddy.experimental=true.
// Make sure to remove that argument as soon as possible
// -- generally that requires upgrading bytebuddy after the JDK goes GA.
];
if ( env.CHANGE_ID ) {

View File

@ -65,7 +65,7 @@ dependencyResolutionManagement {
}
libs {
def antlrVersion = version "antlr", "4.13.0"
def byteBuddyVersion = version "byteBuddy", "1.14.11"
def byteBuddyVersion = version "byteBuddy", "1.14.12"
def classmateVersion = version "classmate", "1.5.1"
def geolatteVersion = version "geolatte", "1.8.2"
def hcannVersion = version "hcann", "6.0.6.Final"