Skip to content

Commit 0f6eb28

Browse files
committed
[SPARK-52357] Upgrade Gradle to 8.14.1
### What changes were proposed in this pull request? This PR aims to upgrade `Gradle` to 8.14.1. ### Why are the changes needed? To bring new features and bug fixes. - https://docs.gradle.org/8.14.1/release-notes.html (2025-05-22) ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass the CIs and check the logs. ``` Welcome to Gradle 8.14.1! Here are the highlights of this release: - Java 24 support - GraalVM Native Image toolchain selection - Enhancements to test reporting - Build Authoring improvements ``` ### Was this patch authored or co-authored using generative AI tooling? No. Closes #233 from dongjoon-hyun/SPARK-52357. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent ecc27d7 commit 0f6eb28

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build-tools/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616
#
17-
FROM gradle:8.14-jdk17-noble AS builder
17+
FROM gradle:8.14.1-jdk17-noble AS builder
1818

1919
WORKDIR /app
2020

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

1818
distributionBase=GRADLE_USER_HOME
1919
distributionPath=wrapper/dists
20-
distributionSha256Sum=61ad310d3c7d3e5da131b76bbf22b5a4c0786e9d892dae8c1658d4b484de3caa
21-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
20+
distributionSha256Sum=845952a9d6afa783db70bb3b0effaae45ae5542ca2bb7929619e8af49cb634cf
21+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
2222
networkTimeout=10000
2323
validateDistributionUrl=true
2424
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ APP_BASE_NAME=${0##*/}
8989
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
9090
' "$PWD" ) || exit
9191
if [ ! -e $APP_HOME/gradle/wrapper/gradle-wrapper.jar -a "$(command -v curl)" ]; then
92-
curl -o $APP_HOME/gradle/wrapper/gradle-wrapper.jar https://raw.githubusercontent.com/gradle/gradle/v8.14.0/gradle/wrapper/gradle-wrapper.jar
92+
curl -o $APP_HOME/gradle/wrapper/gradle-wrapper.jar https://raw.githubusercontent.com/gradle/gradle/v8.14.1/gradle/wrapper/gradle-wrapper.jar
9393
fi
9494
# If the file still doesn't exist, let's try `wget` and cross our fingers
9595
if [ ! -e $APP_HOME/gradle/wrapper/gradle-wrapper.jar -a "$(command -v wget)" ]; then
96-
wget -O $APP_HOME/gradle/wrapper/gradle-wrapper.jar https://raw.githubusercontent.com/gradle/gradle/v8.14.0/gradle/wrapper/gradle-wrapper.jar
96+
wget -O $APP_HOME/gradle/wrapper/gradle-wrapper.jar https://raw.githubusercontent.com/gradle/gradle/v8.14.1/gradle/wrapper/gradle-wrapper.jar
9797
fi
9898

9999
# Use the maximum available, or set MAX_FD != -1 to use that value.

0 commit comments

Comments
 (0)