Skip to content

Commit 30dc131

Browse files
Update Gradle to v8.14.3 (#17)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 23a0cfb commit 30dc131

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed

gradle/wrapper/gradle-wrapper.jar

311 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
# SPDX-FileCopyrightText: © 2015-2023 the original authors
2-
# SPDX-License-Identifier: Apache-2.0
3-
41
distributionBase=GRADLE_USER_HOME
52
distributionPath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
74
networkTimeout=10000
85
validateDistributionUrl=true
96
zipStoreBase=GRADLE_USER_HOME

gradlew

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

33
#
4-
# SPDX-FileCopyrightText: © 2015-2023 the original authors.
5-
# SPDX-License-Identifier: Apache-2.0
4+
# Copyright © 2015-2021 the original authors.
65
#
76
# Licensed under the Apache License, Version 2.0 (the "License");
87
# you may not use this file except in compliance with the License.
@@ -16,6 +15,8 @@
1615
# See the License for the specific language governing permissions and
1716
# limitations under the License.
1817
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1920

2021
##############################################################################
2122
#
@@ -56,7 +57,7 @@
5657
# Darwin, MinGW, and NonStop.
5758
#
5859
# (3) This script is generated from the Groovy template
59-
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
60+
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
6061
# within the Gradle project.
6162
#
6263
# You can find Gradle at https://github.com/gradle/gradle/.
@@ -85,7 +86,7 @@ done
8586
# shellcheck disable=SC2034
8687
APP_BASE_NAME=${0##*/}
8788
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
88-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
8990

9091
# Use the maximum available, or set MAX_FD != -1 to use that value.
9192
MAX_FD=maximum
@@ -113,7 +114,7 @@ case "$( uname )" in #(
113114
NONSTOP* ) nonstop=true ;;
114115
esac
115116

116-
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
117+
CLASSPATH="\\\"\\\""
117118

118119

119120
# Determine the Java command to use to start the JVM.
@@ -204,15 +205,15 @@ fi
204205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
205206

206207
# Collect all arguments for the java command:
207-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208209
# and any embedded shellness will be escaped.
209210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
210211
# treated as '${Hostname}' itself on the command line.
211212

212213
set -- \
213214
"-Dorg.gradle.appname=$APP_BASE_NAME" \
214215
-classpath "$CLASSPATH" \
215-
org.gradle.wrapper.GradleWrapperMain \
216+
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
216217
"$@"
217218

218219
# Stop when "xargs" is not available.

gradlew.bat

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
@rem
2-
@rem SPDX-FileCopyrightText: © 2015-2023 the original authors.
3-
@rem SPDX-License-Identifier: Apache-2.0
2+
@rem Copyright 2015 the original author or authors.
43
@rem
54
@rem Licensed under the Apache License, Version 2.0 (the "License");
65
@rem you may not use this file except in compliance with the License.
@@ -14,6 +13,8 @@
1413
@rem See the License for the specific language governing permissions and
1514
@rem limitations under the License.
1615
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1718

1819
@if "%DEBUG%"=="" @echo off
1920
@rem ##########################################################################
@@ -69,11 +70,11 @@ goto fail
6970
:execute
7071
@rem Setup the command line
7172

72-
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73+
set CLASSPATH=
7374

7475

7576
@rem Execute Gradle
76-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
77+
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
7778

7879
:end
7980
@rem End local scope for the variables with windows NT shell

0 commit comments

Comments
 (0)