HHH-15107 Upgrade Gradle's max supported bytecode version to 17
Since we're on Gradle 7.3.3. See https://docs.gradle.org/7.3.3/release-notes.html#java17
This commit is contained in:
parent
3a6ad2fd3a
commit
e1d202a795
|
@ -46,7 +46,7 @@ gradle.ext.baselineJavaVersion = JavaLanguageVersion.of( 11 )
|
|||
|
||||
// Gradle does bytecode transformation on tests.
|
||||
// You can't use bytecode higher than what Gradle supports, even with toolchains.
|
||||
def GRADLE_MAX_SUPPORTED_BYTECODE_VERSION = 15
|
||||
def GRADLE_MAX_SUPPORTED_BYTECODE_VERSION = 17
|
||||
|
||||
// If either 'main.jdk.version' or 'test.jdk.version' is set, enable the toolchain and use the selected jdk.
|
||||
// If only one property is set, the other defaults to the baseline Java version (8).
|
||||
|
|
Loading…
Reference in New Issue