File tree Expand file tree Collapse file tree 6 files changed +7
-102
lines changed
Expand file tree Collapse file tree 6 files changed +7
-102
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,12 +3,6 @@ plugins {
33 id ' application'
44}
55
6- java {
7- toolchain {
8- languageVersion = JavaLanguageVersion . of(25 )
9- }
10- }
11-
126repositories {
137 mavenCentral()
148}
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.2.1 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.2 -bin.zip
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 11#! /bin/sh
22
33#
4- # Copyright © 2015 the original authors.
4+ # Copyright © 2015-2021 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.
@@ -114,6 +114,7 @@ case "$( uname )" in #(
114114 NONSTOP* ) nonstop=true ;;
115115esac
116116
117+ CLASSPATH=" \\\"\\\" "
117118
118119
119120# Determine the Java command to use to start the JVM.
171172# For Cygwin or MSYS, switch paths to Windows format before running java
172173if " $cygwin " || " $msys " ; then
173174 APP_HOME=$( cygpath --path --mixed " $APP_HOME " )
175+ CLASSPATH=$( cygpath --path --mixed " $CLASSPATH " )
174176
175177 JAVACMD=$( cygpath --unix " $JAVACMD " )
176178
@@ -210,6 +212,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
210212
211213set -- \
212214 " -Dorg.gradle.appname=$APP_BASE_NAME " \
215+ -classpath " $CLASSPATH " \
213216 -jar " $APP_HOME /gradle/wrapper/gradle-wrapper.jar" \
214217 " $@ "
215218
Original file line number Diff line number Diff line change @@ -70,10 +70,11 @@ goto fail
7070:execute
7171@ rem Setup the command line
7272
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% " -jar " %APP_HOME% \gradle\wrapper\gradle-wrapper.jar" %*
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
You can’t perform that action at this time.
0 commit comments