Skip to content

Commit d878f6b

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

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
@@ -365,7 +365,7 @@ tasks.register("verifyBwcTestsEnabled") {
365365

366366
tasks.register("branchConsistency") {
367367
description = 'Ensures this branch is internally consistent. For example, that versions constants match released versions.'
368-
group 'Verification'
368+
group = 'Verification'
369369
dependsOn ":verifyVersions", ":verifyBwcTestsEnabled"
370370
}
371371

0 commit comments

Comments
 (0)