Skip to content

Commit 723b544

Browse files
authored
[Gradle] Fix deprecation warning in branchConsistency task (elastic#119587) (elastic#119596)
The groovy syntax we use in branchConsistency task was deprecated in gradle 8.12
1 parent 8affbc5 commit 723b544

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

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

0 commit comments

Comments
 (0)