Skip to content

Commit e911a8d

Browse files
authored
[Gradle] Fix deprecation warning in branchConsistency task (#119587) (#119595)
The groovy syntax we use in branchConsistency task was deprecated in gradle 8.12
1 parent a77d6db commit e911a8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ tasks.register("verifyBwcTestsEnabled") {
372372

373373
tasks.register("branchConsistency") {
374374
description = 'Ensures this branch is internally consistent. For example, that versions constants match released versions.'
375-
group 'Verification'
375+
group = 'Verification'
376376
dependsOn ":verifyVersions", ":verifyBwcTestsEnabled"
377377
}
378378

0 commit comments

Comments
 (0)