Skip to content

Commit 96e6e62

Browse files
committed
upgrade Gradle to 9.0.0
1 parent 1dbfd9c commit 96e6e62

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.cirrus.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
task:
22
matrix:
3-
- name: Tests (JDK 21 LTS)
3+
- name: Tests (JDK LTS)
44
container:
5-
image: gradle:8.14-jdk-lts-and-current-alpine
5+
image: public.ecr.aws/docker/library/gradle:9-jdk-lts-and-current-alpine
66
gradle_cache:
77
folder: ~/.gradle/caches
88
check_script: gradle check --no-daemon --warning-mode=all

DSLs/kubernetes/generator/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ application {
88
}
99

1010
tasks.named<JavaExec>("run").configure {
11-
args = listOf("${projects.dsLs.kubernetes.dsl.dependencyProject.projectDir}/src/main/kotlin-gen/")
11+
args = listOf("${project.project(projects.dsLs.kubernetes.dsl.path).projectDir}/src/main/kotlin-gen/")
1212
}
1313

1414
dependencies {

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ plugins {
1414
}
1515

1616
tasks.wrapper {
17-
gradleVersion = "8.14.1"
18-
distributionSha256Sum = "d7042b3c11565c192041fc8c4703f541b888286404b4f267138c1d094d8ecdca"
17+
gradleVersion = "9.0.0"
18+
distributionSha256Sum = "f759b8dd5204e2e3fa4ca3e73f452f087153cf81bac9561eeb854229cc2c5365"
1919
distributionType = Wrapper.DistributionType.ALL
2020
}
2121

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=d7042b3c11565c192041fc8c4703f541b888286404b4f267138c1d094d8ecdca
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-all.zip
3+
distributionSha256Sum=f759b8dd5204e2e3fa4ca3e73f452f087153cf81bac9561eeb854229cc2c5365
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-all.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)