Skip to content

Commit ae6a9e6

Browse files
committed
HHH-19548 Upgrade to ByteBuddy 1.17.5
1 parent 5a9381a commit ae6a9e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ stage('Configure') {
4848
// and it's useful to test that.
4949
new BuildEnvironment( testJdkVersion: '23', testJdkLauncherArgs: '--enable-preview', additionalOptions: '-PskipJacoco=true' ),
5050
new BuildEnvironment( testJdkVersion: '24', testJdkLauncherArgs: '--enable-preview', additionalOptions: '-PskipJacoco=true' ),
51+
new BuildEnvironment( testJdkVersion: '25', testJdkLauncherArgs: '--enable-preview', additionalOptions: '-PskipJacoco=true' )
5152
// The following JDKs aren't supported by Hibernate ORM out-of-the box yet:
5253
// they require the use of -Dnet.bytebuddy.experimental=true.
5354
// Make sure to remove that argument as soon as possible
5455
// -- generally that requires upgrading bytebuddy after the JDK goes GA.
55-
new BuildEnvironment( testJdkVersion: '25', testJdkLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true', additionalOptions: '-PskipJacoco=true' ),
5656
];
5757

5858
if ( env.CHANGE_ID ) {

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ dependencyResolutionManagement {
7676
def antlrVersion = version "antlr", "4.13.2"
7777
// WARNING: When upgrading to a version of bytebuddy that supports a new bytecode version,
7878
// make sure to remove the now unnecessary net.bytebuddy.experimental=true in relevant CI jobs (Jenkinsfile).
79-
def byteBuddyVersion = version "byteBuddy", "1.15.11"
79+
def byteBuddyVersion = version "byteBuddy", "1.17.5"
8080
def classmateVersion = version "classmate", "1.7.0"
8181
def geolatteVersion = version "geolatte", "1.9.1"
8282
def hibernateModelsVersion = version "hibernateModels", "1.0.0"

0 commit comments

Comments
 (0)