summaryrefslogtreecommitdiff
path: root/lib/java
diff options
context:
space:
mode:
authorJiayu Liu <jiayu@hey.com>2022-09-06 08:57:19 +0800
committerJens Geyer <Jens-G@users.noreply.github.com>2022-09-07 00:33:09 +0200
commit8a32156dd26d418ad5c35cd6ab912a01d6aaf843 (patch)
tree31e4be37d4efa88cd76398afe9604ec6da454516 /lib/java
parentaa85593c89b540b821b07f7611f5ac5de29c6665 (diff)
downloadthrift-8a32156dd26d418ad5c35cd6ab912a01d6aaf843.tar.gz
update gradle version to 7.5.1 and update hashes
Diffstat (limited to 'lib/java')
-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 d60dbb70e..cd1293265 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.4.2 to build the Thrift Java source. The usual way to setup gradle
+Currently we use gradle 7.5.1 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.4.2"
+export GRADLE_VERSION="7.5.1"
# install dependencies
apt-get install -y --no-install-recommends openjdk-11-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 "29e49b10984e585d8118b7d0bc452f944e386458df27371b49b4ac1dec4b7fda /tmp/gradle-$GRADLE_VERSION-bin.zip" | sha256sum -c -
+echo "f6b8596b10cce501591e92f229816aa4046424f3b24d771751b06779d58c8ec4 /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