summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJiayu Liu <Jimexist@users.noreply.github.com>2023-04-09 14:39:20 +0700
committerGitHub <noreply@github.com>2023-04-09 15:39:20 +0800
commit79a4b1e9a36248b8350f637b38ad073f49c5fd8f (patch)
tree421dc2cc518bd0ad3cf737126f85560bd18c1098 /lib
parentc82d0c2101544abcad6895b3c9f962980c15844c (diff)
downloadthrift-79a4b1e9a36248b8350f637b38ad073f49c5fd8f.tar.gz
update gradle to version 7.6 (#2744)
* update gradle to version 7.6 * update hash
Diffstat (limited to 'lib')
-rw-r--r--lib/java/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/java/README.md b/lib/java/README.md
index 7005c605f..956d043dd 100644
--- a/lib/java/README.md
+++ b/lib/java/README.md
@@ -42,7 +42,7 @@ The Thrift Java source is not build using the GNU tools, but rather uses
the Gradle build system, which tends to be predominant amongst Java
developers.
-Currently we use gradle 7.5.1 to build the Thrift Java source. The usual way to setup gradle
+Currently we use gradle 7.6 to build the Thrift Java source. The usual way to setup gradle
project is to include the gradle-wrapper.jar in the project and then run the gradle wrapper to
bootstrap setting up gradle binaries. However to avoid putting binary files into the source tree we
have ignored the gradle wrapper files. You are expected to install it manually, as described in
@@ -50,13 +50,13 @@ the [gradle documentation](https://docs.gradle.org/current/userguide/installatio
following this step (which is also done in the travis CI docker images):
```bash
-export GRADLE_VERSION="7.5.1"
+export GRADLE_VERSION="7.6"
# install dependencies
apt-get install -y --no-install-recommends openjdk-17-jdk-headless wget unzip
# download gradle distribution
wget https://services.gradle.org/distributions/gradle-$GRADLE_VERSION-bin.zip -q -O /tmp/gradle-$GRADLE_VERSION-bin.zip
# check binary integrity
-echo "f6b8596b10cce501591e92f229816aa4046424f3b24d771751b06779d58c8ec4 /tmp/gradle-$GRADLE_VERSION-bin.zip" | sha256sum -c -
+echo "7ba68c54029790ab444b39d7e293d3236b2632631fb5f2e012bb28b4ff669e4b /tmp/gradle-$GRADLE_VERSION-bin.zip" | sha256sum -c -
# unzip and install
unzip -d /tmp /tmp/gradle-$GRADLE_VERSION-bin.zip
mv /tmp/gradle-$GRADLE_VERSION /usr/local/gradle