Skip to content

Commit 89249f7

Browse files
committed
Upgrade to Gradle 8.10.2
1 parent 6849d3b commit 89249f7

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ org.gradle.daemon=true
55
org.gradle.parallel=true
66
org.gradle.jvmargs=-Dfile.encoding=UTF-8
77

8-
kotlinVersion=1.9.22
8+
kotlinVersion=1.9.24
99

1010
kotlin.stdlib.default.dependency=false

gradle/wrapper/gradle-wrapper.jar

346 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
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.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ done
8383
# This is normally unused
8484
# shellcheck disable=SC2034
8585
APP_BASE_NAME=${0##*/}
86-
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
86+
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87+
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
8788

8889
# Use the maximum available, or set MAX_FD != -1 to use that value.
8990
MAX_FD=maximum

settings.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ pluginManagement {
1313
}
1414

1515
plugins {
16-
id "com.gradle.enterprise" version "3.12.6"
17-
id "io.spring.ge.conventions" version "0.0.14"
16+
id "io.spring.develocity.conventions" version "0.0.22"
1817
}
1918

2019
rootProject.name = 'spring-graphql'
@@ -24,9 +23,10 @@ include 'platform',
2423
'spring-graphql-docs'
2524

2625
settings.gradle.projectsLoaded {
27-
gradleEnterprise {
26+
develocity {
2827
buildScan {
29-
File buildDir = settings.gradle.rootProject.getBuildDir()
28+
File buildDir = settings.gradle.rootProject
29+
.getLayout().getBuildDirectory().getAsFile().get()
3030
buildDir.mkdirs()
3131
new File(buildDir, "build-scan-uri.txt").text = "(build scan not generated)"
3232
buildScanPublished { scan ->

0 commit comments

Comments
 (0)