summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiayu Liu <Jimexist@users.noreply.github.com>2023-03-09 22:51:09 +0800
committerGitHub <noreply@github.com>2023-03-09 22:51:09 +0800
commitf377dd3445362b5d5f051f549a12424663801894 (patch)
treea6ca5ccefa5dbe7b3d2e7436308bf0a597b97477
parent074a9342d85f8df88487699658315c3a8912487e (diff)
downloadthrift-f377dd3445362b5d5f051f549a12424663801894.tar.gz
Update Java lib gradle build script docs (#2767)
It stated Java 8 but now we are on Java 11
-rw-r--r--lib/java/gradle/sourceConfiguration.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/java/gradle/sourceConfiguration.gradle b/lib/java/gradle/sourceConfiguration.gradle
index f39f5e51d..7eccc73f2 100644
--- a/lib/java/gradle/sourceConfiguration.gradle
+++ b/lib/java/gradle/sourceConfiguration.gradle
@@ -27,8 +27,8 @@
// https://docs.gradle.org/current/userguide/toolchains.html
//
// The '--release' option added below makes sure that even if we are using
-// the toolchain version > 8, the final artifact is at version 8. There is
-// also a runtime CI that's based on Java 8 to ensure that.
+// the toolchain version > 11, the final artifact is at version 11. There is
+// also a runtime CI that's based on Java 11 to ensure that.
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)