Skip to content

Commit 311c5fd

Browse files
committed
[SPARK-52773] Upgrade Gradle to 8.14.3
### What changes were proposed in this pull request? This PR aims to upgrade `Gradle` to 8.14.3. ### Why are the changes needed? To bring the latest bug fixes. - https://docs.gradle.org/8.14.3/release-notes.html ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes apache#282 from dongjoon-hyun/SPARK-52773. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 298291e commit 311c5fd

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.2-jdk17-noble AS builder
17+
FROM gradle:8.14.3-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=7197a12f450794931532469d4ff21a59ea2c1cd59a3ec3f89c035c3c420a6999
21-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
20+
distributionSha256Sum=bd71102213493060956ec229d946beee57158dbd89d0e62b91bca0fa2c5f3531
21+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-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.2/gradle/wrapper/gradle-wrapper.jar
92+
curl -o $APP_HOME/gradle/wrapper/gradle-wrapper.jar https://raw.githubusercontent.com/gradle/gradle/v8.14.3/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.2/gradle/wrapper/gradle-wrapper.jar
96+
wget -O $APP_HOME/gradle/wrapper/gradle-wrapper.jar https://raw.githubusercontent.com/gradle/gradle/v8.14.3/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)