Skip to content

Commit b2dd7ee

Browse files
committed
[KAFKA-19174] [Work in progress] Gradle version upgrade 8 -->> 9
details: - gradle: 8.14.1 -->> 9.0.0 - shadow plugin: 8.3.6 -->> 9.0.0 related links: - https://github.com/gradle/gradle/releases/tag/v9.0.0 - https://github.com/GradleUp/shadow/releases/tag/9.0.0
1 parent 3e9b809 commit b2dd7ee

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ plugins {
3939

4040
id "com.github.spotbugs" version '6.2.3' apply false
4141
id 'org.scoverage' version '8.0.3' apply false
42-
id 'com.gradleup.shadow' version '8.3.6' apply false
42+
id 'com.gradleup.shadow' version '9.0.0' apply false
4343
id 'com.diffplug.spotless' version "6.25.0"
4444
}
4545

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: "9.0.0",
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=8fad3d78296ca518113f3d29016617c7f9367dc005f932bd9d93bf45ba46072b
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.
@@ -205,7 +205,7 @@ fi
205205
# Loop in case we encounter an error.
206206
for attempt in 1 2 3; do
207207
if [ ! -e "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" ]; then
208-
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
208+
if ! curl -s -S --retry 3 -L -o "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" "https://raw.githubusercontent.com/gradle/gradle/v9.0.0/gradle/wrapper/gradle-wrapper.jar"; then
209209
rm -f "$APP_HOME/gradle/wrapper/gradle-wrapper.jar"
210210
# Pause for a bit before looping in case the server throttled us.
211211
sleep 5

0 commit comments

Comments
 (0)