We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4371308 commit 33079d3Copy full SHA for 33079d3
local-build-plugins/src/main/java/org/hibernate/orm/toolchains/JdkVersionConfig.java
@@ -168,7 +168,10 @@ public static JdkVersionConfig createVersionConfig(
168
testReleaseVersion = maxSupportedJdkVersion;
169
}
170
171
- testLauncherVersion = testReleaseVersion;
+ // This must not be downgraded like we do for the "release version",
172
+ // first because we don't need to,
173
+ // second because we don't necessarily have a lower version of the JDK available on the machine.
174
+ testLauncherVersion = testCompilerVersion;
175
176
return new JdkVersionConfig(
177
true,
0 commit comments