HHH-17754 Upgrade to Byte Buddy 1.14.12
This commit is contained in:
parent
9bb15727e4
commit
af6edebb92
|
@ -49,11 +49,11 @@ stage('Configure') {
|
||||||
new BuildEnvironment( testJdkVersion: '20', testJdkLauncherArgs: '--enable-preview' ),
|
new BuildEnvironment( testJdkVersion: '20', testJdkLauncherArgs: '--enable-preview' ),
|
||||||
new BuildEnvironment( testJdkVersion: '21', testJdkLauncherArgs: '--enable-preview' ),
|
new BuildEnvironment( testJdkVersion: '21', testJdkLauncherArgs: '--enable-preview' ),
|
||||||
new BuildEnvironment( testJdkVersion: '22', testJdkLauncherArgs: '--enable-preview' ),
|
new BuildEnvironment( testJdkVersion: '22', testJdkLauncherArgs: '--enable-preview' ),
|
||||||
// The following JDKs aren't supported by Hibernate ORM out-of-the box yet:
|
new BuildEnvironment( testJdkVersion: '23', testJdkLauncherArgs: '--enable-preview' )
|
||||||
// they require the use of -Dnet.bytebuddy.experimental=true.
|
// The following JDKs aren't supported by Hibernate ORM out-of-the box yet:
|
||||||
// Make sure to remove that argument as soon as possible
|
// they require the use of -Dnet.bytebuddy.experimental=true.
|
||||||
// -- generally that requires upgrading bytebuddy after the JDK goes GA.
|
// Make sure to remove that argument as soon as possible
|
||||||
new BuildEnvironment( testJdkVersion: '23', testJdkLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true' )
|
// -- generally that requires upgrading bytebuddy after the JDK goes GA.
|
||||||
];
|
];
|
||||||
|
|
||||||
if ( env.CHANGE_ID ) {
|
if ( env.CHANGE_ID ) {
|
||||||
|
|
|
@ -65,7 +65,7 @@ dependencyResolutionManagement {
|
||||||
}
|
}
|
||||||
libs {
|
libs {
|
||||||
def antlrVersion = version "antlr", "4.13.0"
|
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 classmateVersion = version "classmate", "1.5.1"
|
||||||
def geolatteVersion = version "geolatte", "1.8.2"
|
def geolatteVersion = version "geolatte", "1.8.2"
|
||||||
def hcannVersion = version "hcann", "6.0.6.Final"
|
def hcannVersion = version "hcann", "6.0.6.Final"
|
||||||
|
|
Loading…
Reference in New Issue