File tree Expand file tree Collapse file tree 4 files changed +16
-2
lines changed
Expand file tree Collapse file tree 4 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-9.1 .0-bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-9.2 .0-bin.zip
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
77zipStorePath =wrapper/dists
8+ distributionSha256Sum =df67a32e86e3276d011735facb1535f64d0d88df84fa87521e90becc2d735444
Original file line number Diff line number Diff line change @@ -114,6 +114,9 @@ case "$( uname )" in #(
114114 NONSTOP* ) nonstop=true ;;
115115esac
116116
117+ < % if ( classpath ) {%> \
118+ CLASSPATH=" \\\"\\\" "
119+ < % } %> \
117120
118121
119122# Determine the Java command to use to start the JVM.
171174# For Cygwin or MSYS, switch paths to Windows format before running java
172175if " $cygwin " || " $msys " ; then
173176 APP_HOME=$( cygpath --path --mixed " $APP_HOME " )
177+ < % if ( classpath ) {%> \
178+ CLASSPATH=$( cygpath --path --mixed " $CLASSPATH " )
179+ < % } %> \
174180
175181 JAVACMD=$( cygpath --unix " $JAVACMD " )
176182
@@ -210,6 +216,10 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
210216
211217set -- \
212218 " -Dorg.gradle.appname=$APP_BASE_NAME " \
219+ \
220+ < % if ( classpath ) {%> \
221+ -classpath " $CLASSPATH " \
222+ < % } %> \
213223 -jar " $APP_HOME /gradle/wrapper/gradle-wrapper.jar" \
214224 " $@ "
215225
Original file line number Diff line number Diff line change @@ -70,10 +70,13 @@ goto fail
7070:execute
7171@ rem Setup the command line
7272
73+ < % if ( classpath ) {% > \
74+ set CLASSPATH =
75+ < % } % > \
7376
7477
7578@ rem Execute Gradle
76- " %JAVA_EXE% " %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% " -Dorg.gradle.appname=%APP_BASE_NAME% " -jar " %APP_HOME% \gradle\wrapper\gradle-wrapper.jar" %*
79+ " %JAVA_EXE% " %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% " -Dorg.gradle.appname=%APP_BASE_NAME% " < % if ( classpath ) {% > -classpath " %CLASSPATH% " < % } % > -jar " %APP_HOME% \gradle\wrapper\gradle-wrapper.jar" %*
7780
7881:end
7982@ rem End local scope for the variables with windows NT shell
You can’t perform that action at this time.
0 commit comments