Skip to content

Commit f6f6172

Browse files
MINOR: update gradle from 8.14.1 to 8.14.3 (#20495)
**This upgrade includes:** - Dependency configurations are now realized only when necessary, which helps improve configuration performance and memory usage. - The configuration cache improves build time by caching the result of the configuration phase and reusing it for subsequent builds. This feature can significantly improve build performance. reference: [Gradle 8.14.3 Release Notes](https://docs.gradle.org/8.14.3/release-notes.html#build-authoring-improvements) Reviewers: Chia-Ping Tsai <[email protected]>
1 parent 655cfaa commit f6f6172

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ versions += [
6161
commonsLang: "3.18.0",
6262
commonsValidator: "1.9.0",
6363
classgraph: "4.8.179",
64-
gradle: "8.14.1",
64+
gradle: "8.14.3",
6565
grgit: "4.1.1",
6666
httpclient: "4.5.14",
6767
jackson: "2.19.0",

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=845952a9d6afa783db70bb3b0effaae45ae5542ca2bb7929619e8af49cb634cf
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
3+
distributionSha256Sum=bd71102213493060956ec229d946beee57158dbd89d0e62b91bca0fa2c5f3531
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ esac
116116
# Loop in case we encounter an error.
117117
for attempt in 1 2 3; do
118118
if [ ! -e "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" ]; then
119-
if ! curl -s -S --retry 3 -L -o "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" "https://raw.githubusercontent.com/gradle/gradle/v8.14.1/gradle/wrapper/gradle-wrapper.jar"; then
119+
if ! curl -s -S --retry 3 -L -o "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" "https://raw.githubusercontent.com/gradle/gradle/v8.14.3/gradle/wrapper/gradle-wrapper.jar"; then
120120
rm -f "$APP_HOME/gradle/wrapper/gradle-wrapper.jar"
121121
# Pause for a bit before looping in case the server throttled us.
122122
sleep 5

0 commit comments

Comments
 (0)