Skip to content

Commit 5b9984f

Browse files
williamhyundongjoon-hyun
authored andcommitted
[SPARK-50724] Update gradle to 8.12
### What changes were proposed in this pull request? This PR aims to update gradle to 8.12. ### Why are the changes needed? To use the latest version of gradle. ### 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#151 from williamhyun/SPARK-50724. Authored-by: William Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent b07bb42 commit 5b9984f

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.11.0-jdk17-jammy AS builder
17+
FROM gradle:8.12.0-jdk17-jammy AS builder
1818
WORKDIR /app
1919
COPY . .
2020
RUN ./gradlew clean build -x check

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=57dafb5c2622c6cc08b993c85b7c06956a2f53536432a30ead46166dbca0f1e9
21-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip
20+
distributionSha256Sum=7a00d51fb93147819aab76024feece20b6b84e420694101f276be952e08bef03
21+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-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.10.1/gradle/wrapper/gradle-wrapper.jar
92+
curl -o $APP_HOME/gradle/wrapper/gradle-wrapper.jar https://raw.githubusercontent.com/gradle/gradle/v8.12.0/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.10.1/gradle/wrapper/gradle-wrapper.jar
96+
wget -O $APP_HOME/gradle/wrapper/gradle-wrapper.jar https://raw.githubusercontent.com/gradle/gradle/v8.12.0/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)