Skip to content

Commit 2b6fc1d

Browse files
Update all dependencies (#528)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent f4f6aef commit 2b6fc1d

File tree

77 files changed

+117
-117
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+117
-117
lines changed

AccessibilityCodelab/app/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ android {
8787
}
8888

8989
dependencies {
90-
def composeBom = platform('androidx.compose:compose-bom:2025.04.01')
90+
def composeBom = platform('androidx.compose:compose-bom:2025.05.00')
9191
implementation(composeBom)
9292
testImplementation(composeBom)
9393
androidTestImplementation(composeBom)
@@ -118,12 +118,12 @@ dependencies {
118118
implementation 'androidx.core:core-ktx:1.16.0'
119119
implementation "androidx.activity:activity-compose:1.10.1"
120120

121-
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7"
122-
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.8.7"
123-
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.8.7"
124-
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.7"
121+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0"
122+
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0"
123+
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.9.0"
124+
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0"
125125

126-
implementation 'androidx.navigation:navigation-compose:2.8.9'
126+
implementation 'androidx.navigation:navigation-compose:2.9.0'
127127

128128
androidTestImplementation 'androidx.test:rules:1.6.1'
129129
androidTestImplementation 'androidx.test:runner:1.6.2'

AccessibilityCodelab/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ buildscript {
2121
}
2222

2323
dependencies {
24-
classpath 'com.android.tools.build:gradle:8.9.2'
24+
classpath 'com.android.tools.build:gradle:8.10.0'
2525
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10"
2626
}
2727
}
Binary file not shown.

AccessibilityCodelab/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

AccessibilityCodelab/gradlew

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ case "$( uname )" in #(
114114
NONSTOP* ) nonstop=true ;;
115115
esac
116116

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

119119

120120
# Determine the Java command to use to start the JVM.
@@ -213,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
213213
set -- \
214214
"-Dorg.gradle.appname=$APP_BASE_NAME" \
215215
-classpath "$CLASSPATH" \
216-
org.gradle.wrapper.GradleWrapperMain \
216+
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
217217
"$@"
218218

219219
# Stop when "xargs" is not available.

AccessibilityCodelab/gradlew.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ goto fail
7070
:execute
7171
@rem Setup the command line
7272

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

7575

7676
@rem Execute Gradle
77-
"%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" %*
7878

7979
:end
8080
@rem End local scope for the variables with windows NT shell

AdaptiveUiCodelab/gradle/libs.versions.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[versions]
2-
androidGradlePlugin = "8.9.2"
3-
composeBom = "2025.04.01"
2+
androidGradlePlugin = "8.10.0"
3+
composeBom = "2025.05.00"
44
coreKtx = "1.16.0"
55
activityCompose = "1.10.1"
66
espressoCore = "3.6.1"
77
junit = "4.13.2"
88
junitVersion = "1.2.1"
99
kotlin = "2.1.10"
1010
kotlinxCoroutinesAndroid = "1.10.1"
11-
lifecycle = "2.8.7"
11+
lifecycle = "2.9.0"
1212
window = "1.3.0"
1313

1414
[libraries]
Binary file not shown.

AdaptiveUiCodelab/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

AdaptiveUiCodelab/gradlew

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ case "$( uname )" in #(
114114
NONSTOP* ) nonstop=true ;;
115115
esac
116116

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

119119

120120
# Determine the Java command to use to start the JVM.
@@ -213,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
213213
set -- \
214214
"-Dorg.gradle.appname=$APP_BASE_NAME" \
215215
-classpath "$CLASSPATH" \
216-
org.gradle.wrapper.GradleWrapperMain \
216+
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
217217
"$@"
218218

219219
# Stop when "xargs" is not available.

AdaptiveUiCodelab/gradlew.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ goto fail
7070
:execute
7171
@rem Setup the command line
7272

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

7575

7676
@rem Execute Gradle
77-
"%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" %*
7878

7979
:end
8080
@rem End local scope for the variables with windows NT shell

AdvancedStateAndSideEffectsCodelab/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ dependencies {
107107
implementation "androidx.appcompat:appcompat:1.7.0"
108108
implementation "androidx.tracing:tracing:1.3.0"
109109

110-
def composeBom = platform('androidx.compose:compose-bom:2025.04.01')
110+
def composeBom = platform('androidx.compose:compose-bom:2025.05.00')
111111
implementation(composeBom)
112112
androidTestImplementation(composeBom)
113113
implementation "androidx.compose.runtime:runtime"
@@ -120,7 +120,7 @@ dependencies {
120120
debugImplementation "androidx.compose.ui:ui-tooling"
121121
debugImplementation "androidx.compose.ui:ui-test-manifest"
122122

123-
def lifecycle_version = "2.8.7"
123+
def lifecycle_version = "2.9.0"
124124
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycle_version"
125125
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
126126
implementation "com.google.dagger:hilt-android:2.56.2"

AdvancedStateAndSideEffectsCodelab/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020
mavenCentral()
2121
}
2222
dependencies {
23-
classpath "com.android.tools.build:gradle:8.9.2"
23+
classpath "com.android.tools.build:gradle:8.10.0"
2424
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10"
2525
classpath "com.google.dagger:hilt-android-gradle-plugin:2.56.2"
2626
classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.1.10"
Binary file not shown.

AdvancedStateAndSideEffectsCodelab/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

AdvancedStateAndSideEffectsCodelab/gradlew

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ case "$( uname )" in #(
114114
NONSTOP* ) nonstop=true ;;
115115
esac
116116

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

119119

120120
# Determine the Java command to use to start the JVM.
@@ -213,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
213213
set -- \
214214
"-Dorg.gradle.appname=$APP_BASE_NAME" \
215215
-classpath "$CLASSPATH" \
216-
org.gradle.wrapper.GradleWrapperMain \
216+
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
217217
"$@"
218218

219219
# Stop when "xargs" is not available.

AdvancedStateAndSideEffectsCodelab/gradlew.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ goto fail
7070
:execute
7171
@rem Setup the command line
7272

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

7575

7676
@rem Execute Gradle
77-
"%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" %*
7878

7979
:end
8080
@rem End local scope for the variables with windows NT shell

AnimationCodelab/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020
mavenCentral()
2121
}
2222
dependencies {
23-
classpath 'com.android.tools.build:gradle:8.9.2'
23+
classpath 'com.android.tools.build:gradle:8.10.0'
2424
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10"
2525
classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.1.10"
2626
}

AnimationCodelab/finished/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ android {
4343
}
4444

4545
dependencies {
46-
def composeBom = platform('androidx.compose:compose-bom:2025.04.01')
46+
def composeBom = platform('androidx.compose:compose-bom:2025.05.00')
4747
implementation(composeBom)
4848

4949
implementation 'androidx.activity:activity-compose:1.10.1'
Binary file not shown.

AnimationCodelab/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

AnimationCodelab/gradlew

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ case "$( uname )" in #(
114114
NONSTOP* ) nonstop=true ;;
115115
esac
116116

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

119119

120120
# Determine the Java command to use to start the JVM.
@@ -213,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
213213
set -- \
214214
"-Dorg.gradle.appname=$APP_BASE_NAME" \
215215
-classpath "$CLASSPATH" \
216-
org.gradle.wrapper.GradleWrapperMain \
216+
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
217217
"$@"
218218

219219
# Stop when "xargs" is not available.

AnimationCodelab/gradlew.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ goto fail
7070
:execute
7171
@rem Setup the command line
7272

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

7575

7676
@rem Execute Gradle
77-
"%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" %*
7878

7979
:end
8080
@rem End local scope for the variables with windows NT shell

AnimationCodelab/start/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ android {
4343
}
4444

4545
dependencies {
46-
def composeBom = platform('androidx.compose:compose-bom:2025.04.01')
46+
def composeBom = platform('androidx.compose:compose-bom:2025.05.00')
4747
implementation(composeBom)
4848

4949
implementation 'androidx.activity:activity-compose:1.10.1'

BasicLayoutsCodelab/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ android {
6161
}
6262

6363
dependencies {
64-
def composeBom = platform('androidx.compose:compose-bom:2025.04.01')
64+
def composeBom = platform('androidx.compose:compose-bom:2025.05.00')
6565
implementation(composeBom)
6666
androidTestImplementation(composeBom)
6767

@@ -72,7 +72,7 @@ dependencies {
7272
implementation "androidx.compose.material:material-icons-extended"
7373
implementation "androidx.compose.ui:ui-tooling-preview"
7474
implementation "com.google.android.material:material:1.12.0"
75-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.7'
75+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.9.0'
7676
implementation 'androidx.activity:activity-compose:1.10.1'
7777
testImplementation 'junit:junit:4.13.2'
7878
androidTestImplementation 'androidx.test.ext:junit:1.2.1'

BasicLayoutsCodelab/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020
mavenCentral()
2121
}
2222
dependencies {
23-
classpath "com.android.tools.build:gradle:8.9.2"
23+
classpath "com.android.tools.build:gradle:8.10.0"
2424
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10"
2525
classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.1.10"
2626
}
Binary file not shown.

BasicLayoutsCodelab/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

BasicLayoutsCodelab/gradlew

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ case "$( uname )" in #(
114114
NONSTOP* ) nonstop=true ;;
115115
esac
116116

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

119119

120120
# Determine the Java command to use to start the JVM.
@@ -213,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
213213
set -- \
214214
"-Dorg.gradle.appname=$APP_BASE_NAME" \
215215
-classpath "$CLASSPATH" \
216-
org.gradle.wrapper.GradleWrapperMain \
216+
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
217217
"$@"
218218

219219
# Stop when "xargs" is not available.

BasicLayoutsCodelab/gradlew.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ goto fail
7070
:execute
7171
@rem Setup the command line
7272

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

7575

7676
@rem Execute Gradle
77-
"%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" %*
7878

7979
:end
8080
@rem End local scope for the variables with windows NT shell

BasicStateCodelab/app/build.gradle.kts

+4-4
Original file line numberDiff line numberDiff line change
@@ -65,18 +65,18 @@ android {
6565

6666
dependencies {
6767
implementation("androidx.core:core-ktx:1.16.0")
68-
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.7")
69-
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.8.7")
68+
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.9.0")
69+
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0")
7070
implementation("androidx.activity:activity-compose:1.10.1")
71-
implementation(platform("androidx.compose:compose-bom:2025.04.01"))
71+
implementation(platform("androidx.compose:compose-bom:2025.05.00"))
7272
implementation("androidx.compose.ui:ui")
7373
implementation("androidx.compose.ui:ui-graphics")
7474
implementation("androidx.compose.ui:ui-tooling-preview")
7575
implementation("androidx.compose.material3:material3")
7676
testImplementation("junit:junit:4.13.2")
7777
androidTestImplementation("androidx.test.ext:junit:1.2.1")
7878
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
79-
androidTestImplementation(platform("androidx.compose:compose-bom:2025.04.01"))
79+
androidTestImplementation(platform("androidx.compose:compose-bom:2025.05.00"))
8080
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
8181
debugImplementation("androidx.compose.ui:ui-tooling")
8282
debugImplementation("androidx.compose.ui:ui-test-manifest")

BasicStateCodelab/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020
}
2121

2222
dependencies {
23-
classpath 'com.android.tools.build:gradle:8.9.2'
23+
classpath 'com.android.tools.build:gradle:8.10.0'
2424
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10"
2525
classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.1.10"
2626
}
Binary file not shown.

BasicStateCodelab/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

BasicStateCodelab/gradlew

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ case "$( uname )" in #(
114114
NONSTOP* ) nonstop=true ;;
115115
esac
116116

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

119119

120120
# Determine the Java command to use to start the JVM.
@@ -213,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
213213
set -- \
214214
"-Dorg.gradle.appname=$APP_BASE_NAME" \
215215
-classpath "$CLASSPATH" \
216-
org.gradle.wrapper.GradleWrapperMain \
216+
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
217217
"$@"
218218

219219
# Stop when "xargs" is not available.

0 commit comments

Comments
 (0)