This is an automated email from the ASF dual-hosted git repository. jiayuliu pushed a commit to branch Jimexist-patch-1 in repository https://gitbox.apache.org/repos/asf/thrift.git
commit 309c25d5ea24c5f41a4c0538b9824f24344546ee Author: Jiayu Liu <[email protected]> AuthorDate: Wed Aug 9 18:40:39 2023 +0800 fix kotlin cross test by downgrading to java 8 fix kotlin cross test by downgrading to java 8 --- lib/kotlin/cross-test-client/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/kotlin/cross-test-client/build.gradle.kts b/lib/kotlin/cross-test-client/build.gradle.kts index b370a403c..8a2c234b8 100644 --- a/lib/kotlin/cross-test-client/build.gradle.kts +++ b/lib/kotlin/cross-test-client/build.gradle.kts @@ -52,7 +52,7 @@ dependencies { kotlin { jvmToolchain { - (this as JavaToolchainSpec).languageVersion.set(JavaLanguageVersion.of(11)) + (this as JavaToolchainSpec).languageVersion.set(JavaLanguageVersion.of(8)) } }
