Skip to content

Commit a0b5937

Browse files
committed
Don't use net.bytebuddy.experimental=true for Java 23 testing
Should have been part of a previous Bytebuddy upgrade, but it seems we forgot.
1 parent b5178d0 commit a0b5937

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ stage('Configure') {
5050
// and it's useful to test that.
5151
new BuildEnvironment( testJdkVersion: '20', testJdkLauncherArgs: '--enable-preview' ),
5252
new BuildEnvironment( testJdkVersion: '21', testJdkLauncherArgs: '--enable-preview' ),
53+
new BuildEnvironment( testJdkVersion: '23', testJdkLauncherArgs: '--enable-preview' ),
5354
// The following JDKs aren't supported by Hibernate ORM out-of-the box yet:
5455
// they require the use of -Dnet.bytebuddy.experimental=true.
5556
// Make sure to remove that argument as soon as possible
5657
// -- generally that requires upgrading bytebuddy after the JDK goes GA.
57-
new BuildEnvironment( testJdkVersion: '23', testJdkLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true' ),
5858
new BuildEnvironment( testJdkVersion: '24', testJdkLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true' )
5959
];
6060

0 commit comments

Comments
 (0)